1 // Aseprite Document Library
2 // Copyright (c) 2001-2015 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_BRUSH_PATTERN_H_INCLUDED
8 #define DOC_BRUSH_PATTERN_H_INCLUDED
9 #pragma once
10 
11 namespace doc {
12 
13   enum class BrushPattern {
14     DEFAULT = 0,
15     ALIGNED_TO_SRC = 0,
16     ALIGNED_TO_DST = 1,
17     PAINT_BRUSH = 2,
18   };
19 
20 } // namespace doc
21 
22 #endif
23