ddnet/src/game/editor/mapitems/layer_front.h

17 lines
353 B
C
Raw Normal View History

#ifndef GAME_EDITOR_MAPITEMS_LAYER_FRONT_H
#define GAME_EDITOR_MAPITEMS_LAYER_FRONT_H
#include "layer_tiles.h"
class CLayerFront : public CLayerTiles
{
public:
CLayerFront(CEditor *pEditor, int w, int h);
void Resize(int NewW, int NewH) override;
void SetTile(int x, int y, CTile Tile) override;
2023-10-02 13:14:38 +00:00
const char *TypeName() const override;
};
#endif