mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
23 lines
497 B
C++
23 lines
497 B
C++
/* (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 "editor.h"
|
|
|
|
|
|
CLayerGame::CLayerGame(int w, int h)
|
|
: CLayerTiles(w, h)
|
|
{
|
|
str_copy(m_aName, "Game", sizeof(m_aName));
|
|
m_Game = 1;
|
|
}
|
|
|
|
CLayerGame::~CLayerGame()
|
|
{
|
|
}
|
|
|
|
int CLayerGame::RenderProperties(CUIRect *pToolbox)
|
|
{
|
|
int r = CLayerTiles::RenderProperties(pToolbox);
|
|
m_Image = -1;
|
|
return r;
|
|
}
|