exile zone

player only, todo opponent and ability activation for exile
This commit is contained in:
Anthony Calosa
2015-10-26 06:50:19 +08:00
parent 0594822872
commit cf0f9d43fa
7 changed files with 76 additions and 8 deletions

View File

@@ -88,4 +88,14 @@ public:
virtual ostream& toString(ostream& out) const;
};
class GuiExile: public GuiGameZone
{
public:
Player * player;
GuiExile(float _x, float _y, bool hasFocus, Player * player, GuiAvatars* parent);
int receiveEventPlus(WEvent*);
int receiveEventMinus(WEvent*);
virtual ostream& toString(ostream& out) const;
};
#endif // _GUISTATIC_H_