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_SHADE_H_INCLUDED |
8 | #define APP_SHADE_H_INCLUDED |
9 | #pragma once |
10 | |
11 | #include "app/color.h" |
12 | |
13 | #include <vector> |
14 | |
15 | namespace app { |
16 | |
17 | typedef std::vector<app::Color> Shade; |
18 | |
19 | Shade shade_from_string(const std::string& str); |
20 | std::string shade_to_string(const Shade& shade); |
21 | |
22 | } // namespace app |
23 | |
24 | #endif |
25 |