about summary refs log tree commit diff
path: root/src/game/editor/ed_layer_game.cpp
blob: 9010bc7199bb390fca5e36b11cdc7175c54a1d46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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(CUIRect *toolbox)
{
	int r = LAYER_TILES::render_properties(toolbox);
	image = -1;
	return r;
}