mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-28 23:06:24 +02:00
13 lines
445 B
C
13 lines
445 B
C
|
#pragma once
|
||
|
#include "global.h"
|
||
|
#include "CPlayerInterface.h"
|
||
|
class CCreatureSet;
|
||
|
class CGHeroInstance;
|
||
|
class CBattleInterface : public IActivable
|
||
|
{
|
||
|
public:
|
||
|
CBattleInterface(CCreatureSet * army1, CCreatureSet * army2, int3 tile, CGHeroInstance *hero1, CGHeroInstance *hero2);
|
||
|
//napisz tu klase odpowiadajaca za wyswietlanie bitwy i obsluge uzytkownika, polecenia ma przekazywac callbackiem
|
||
|
void activate();
|
||
|
void deactivate();
|
||
|
};
|