ddnet/src/game/editor/ed_layer_game.cpp
2008-01-13 22:03:32 +00:00

21 lines
279 B
C++

#include "ed_editor.hpp"
LAYER_GAME::LAYER_GAME(int w, int h)
: LAYER_TILES(w, h)
{
type_name = "Game";
game = 1;
}
LAYER_GAME::~LAYER_GAME()
{
}
int LAYER_GAME::render_properties(RECT *toolbox)
{
int r = LAYER_TILES::render_properties(toolbox);
image = -1;
return r;
}