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_TOOLS_ROTATION_ALGORITHM_H_INCLUDED |
8 | #define APP_TOOLS_ROTATION_ALGORITHM_H_INCLUDED |
9 | #pragma once |
10 | |
11 | namespace app { |
12 | namespace tools { |
13 | |
14 | enum class RotationAlgorithm { |
15 | DEFAULT = 0, |
16 | FAST = 0, |
17 | ROTSPRITE = 1, |
18 | }; |
19 | |
20 | } // namespace tools |
21 | } // namespace app |
22 | |
23 | #endif |
24 |