1 | #ifndef GAME_EDITOR_MAPITEMS_LAYER_GAME_H |
---|---|
2 | #define GAME_EDITOR_MAPITEMS_LAYER_GAME_H |
3 | |
4 | #include "layer_tiles.h" |
5 | |
6 | class CLayerGame : public CLayerTiles |
7 | { |
8 | public: |
9 | CLayerGame(CEditor *pEditor, int w, int h); |
10 | ~CLayerGame(); |
11 | |
12 | CTile GetTile(int x, int y) override; |
13 | void SetTile(int x, int y, CTile Tile) override; |
14 | const char *TypeName() const override; |
15 | |
16 | CUi::EPopupMenuFunctionResult RenderProperties(CUIRect *pToolbox) override; |
17 | }; |
18 | |
19 | #endif |
20 |