1 | // Aseprite |
---|---|
2 | // Copyright (C) 2001-2015 David Capello |
3 | // |
4 | // This program is distributed under the terms of |
5 | // the End-User License Agreement for Aseprite. |
6 | |
7 | #ifndef APP_SPRITE_SHEET_TYPE_H_INCLUDED |
8 | #define APP_SPRITE_SHEET_TYPE_H_INCLUDED |
9 | #pragma once |
10 | |
11 | namespace app { |
12 | |
13 | enum class SpriteSheetType { |
14 | None, |
15 | Horizontal, |
16 | Vertical, |
17 | Rows, |
18 | Columns, |
19 | Packed |
20 | }; |
21 | |
22 | } // namespace app |
23 | |
24 | #endif |
25 |