blob: cf48845ee7911683788496e3086c8c7353a9cc3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
/* If you are missing that file, acquire a complete release at teeworlds.com. */
#include "ed_editor.h"
CLayerGame::CLayerGame(int w, int h)
: CLayerTiles(w, h)
{
m_pTypeName = "Game";
m_Game = 1;
}
CLayerGame::~CLayerGame()
{
}
int CLayerGame::RenderProperties(CUIRect *pToolbox)
{
int r = CLayerTiles::RenderProperties(pToolbox);
m_Image = -1;
return r;
}
|