1 | // Aseprite |
---|---|
2 | // Copyright (c) 2020 Igara Studio S.A. |
3 | // |
4 | // This program is distributed under the terms of |
5 | // the End-User License Agreement for Aseprite. |
6 | |
7 | #ifndef APP_TILEMAP_MODE_H_INCLUDED |
8 | #define APP_TILEMAP_MODE_H_INCLUDED |
9 | #pragma once |
10 | |
11 | namespace app { |
12 | |
13 | // Should we edit the pixels or the tiles of the tilemap? |
14 | enum class TilemapMode { |
15 | Pixels, // Edit tile pixels |
16 | Tiles, // Edit tiles |
17 | }; |
18 | |
19 | } // namespace app |
20 | |
21 | #endif |
22 |