mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
1380a7fd34
* Fixed several memory leaks * Added support for player colors in CMessage (still need some work) * Moved declarations of CPreGame buttons to CPreGame.h * started making player interface (new button classes etc)
8 lines
162 B
C++
8 lines
162 B
C++
#include "stdafx.h"
|
|
#include "CGameInterface.h"
|
|
using namespace CSDL_Ext;
|
|
void CButtonBase::show()
|
|
{
|
|
blitAt(imgs[state],pos.x,pos.y);
|
|
updateRect(&pos);
|
|
} |