1 | // Aseprite Document Library |
---|---|
2 | // Copyright (c) 2019 Igara Studio S.A. |
3 | // Copyright (c) 2001-2014 David Capello |
4 | // |
5 | // This file is released under the terms of the MIT license. |
6 | // Read LICENSE.txt for more information. |
7 | |
8 | #ifndef DOC_COLOR_MODE_H_INCLUDED |
9 | #define DOC_COLOR_MODE_H_INCLUDED |
10 | #pragma once |
11 | |
12 | namespace doc { |
13 | |
14 | enum class ColorMode { |
15 | RGB, |
16 | GRAYSCALE, |
17 | INDEXED, |
18 | BITMAP, |
19 | TILEMAP, |
20 | }; |
21 | |
22 | } // namespace doc |
23 | |
24 | #endif |
25 |