1 | // Aseprite Render Library |
---|---|
2 | // Copyright (c) 2022 Igara Studio S.A. |
3 | // Copyright (c) 2018 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 RENDER_BG_TYPE_H_INCLUDED |
9 | #define RENDER_BG_TYPE_H_INCLUDED |
10 | #pragma once |
11 | |
12 | namespace render { |
13 | |
14 | enum class BgType { |
15 | NONE, |
16 | TRANSPARENT, |
17 | CHECKERED, |
18 | }; |
19 | |
20 | } // namespace render |
21 | |
22 | #endif |
23 |