| 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 FILTERS_TILED_MODE_H_INCLUDED |
| 8 | #define FILTERS_TILED_MODE_H_INCLUDED |
| 9 | #pragma once |
| 10 | |
| 11 | namespace filters { |
| 12 | |
| 13 | enum class TiledMode { |
| 14 | NONE = 0, |
| 15 | X_AXIS = 1, |
| 16 | Y_AXIS = 2, |
| 17 | BOTH = 3, |
| 18 | }; |
| 19 | |
| 20 | } // namespace filters |
| 21 | |
| 22 | #endif |
| 23 |