1 | // Aseprite |
---|---|
2 | // Copyright (C) 2001-2016 David Capello |
3 | // |
4 | // This program is distributed under the terms of |
5 | // the End-User License Agreement for Aseprite. |
6 | |
7 | #ifndef APP_CRASH_RAW_IMAGES_H_INCLUDED |
8 | #define APP_CRASH_RAW_IMAGES_H_INCLUDED |
9 | #pragma once |
10 | |
11 | namespace app { |
12 | namespace crash { |
13 | |
14 | enum class RawImagesAs { |
15 | kFrames, |
16 | kLayers, |
17 | }; |
18 | |
19 | } // namespace crash |
20 | } // namespace app |
21 | |
22 | #endif |
23 |