1 | // Aseprite Document Library |
---|---|
2 | // Copyright (c) 2020 Igara Studio S.A. |
3 | // |
4 | // This file is released under the terms of the MIT license. |
5 | // Read LICENSE.txt for more information. |
6 | |
7 | #ifndef DOC_PALETTE_GRADIENT_TYPE_H_INCLUDED |
8 | #define DOC_PALETTE_GRADIENT_TYPE_H_INCLUDED |
9 | #pragma once |
10 | |
11 | namespace doc { |
12 | |
13 | enum class GradientType { |
14 | LINEAR, |
15 | HUE, |
16 | }; |
17 | |
18 | } // namespace doc |
19 | |
20 | #endif |
21 |