- Fixed compilation warning in GameStateShop.cpp

- Added a call to input reset after each update in the Qt frontends to avoid strange auto-keypress
- Removed tutorial display in AI vs AI (test AI mode)
- Commit Qt project with latest buttons files
- Added a small isHuman method to the Player class
This commit is contained in:
Xawotihs@gmail.com
2012-01-30 21:16:33 +00:00
parent 9f1d7c211a
commit 4762ffea87
5 changed files with 12 additions and 2 deletions
+5
View File
@@ -75,6 +75,11 @@ public:
return 0;
}
bool isHuman()
{
return (playMode == MODE_HUMAN);
}
Player * opponent();
int getId();
JQuadPtr getIcon();