1// Aseprite Document Library
2// Copyright (c) 2001-2014 David Capello
3//
4// This file is released under the terms of the MIT license.
5// Read LICENSE.txt for more information.
6
7#ifndef DOC_ALGORITHM_HLINE_H_INCLUDED
8#define DOC_ALGORITHM_HLINE_H_INCLUDED
9#pragma once
10
11namespace doc {
12
13 typedef void (*AlgoHLine)(int x1, int y, int x2, void *data);
14
15} // namespace doc
16
17#endif
18