1 | // Aseprite |
---|---|
2 | // Copyright (C) 2018 David Capello |
3 | // |
4 | // This program is distributed under the terms of |
5 | // the End-User License Agreement for Aseprite. |
6 | |
7 | #ifndef APP_COMMANDS_FILTERS_CELS_TARGET_H_INCLUDED |
8 | #define APP_COMMANDS_FILTERS_CELS_TARGET_H_INCLUDED |
9 | #pragma once |
10 | |
11 | namespace app { |
12 | |
13 | enum class CelsTarget { |
14 | Selected, // Selected cels in the timeline |
15 | All // All cels in the sprite |
16 | }; |
17 | |
18 | } // namespace app |
19 | |
20 | #endif |
21 |