summaryrefslogtreecommitdiff
path: root/HumanPlayer.h
diff options
context:
space:
mode:
authorXaviDCR92 <xavi.dcr@gmail.com>2018-07-10 00:04:16 +0200
committerXaviDCR92 <xavi.dcr@gmail.com>2018-07-10 00:04:16 +0200
commit14c12aeea30d59e9c811f1cc8c7019053d646033 (patch)
tree7bff078a702a1b2949c37930adfc6fd2fc45c3cb /HumanPlayer.h
parent188d74cb789f33967daf6daa5af17d41b6f59d4e (diff)
downloadpocketempires-14c12aeea30d59e9c811f1cc8c7019053d646033.tar.gz
More work on Unit/BaseUnit concepts.
Diffstat (limited to 'HumanPlayer.h')
-rw-r--r--HumanPlayer.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/HumanPlayer.h b/HumanPlayer.h
index 17986ba..5f213c4 100644
--- a/HumanPlayer.h
+++ b/HumanPlayer.h
@@ -24,15 +24,14 @@ class HumanPlayer : public Player
{
public:
explicit HumanPlayer(const char* const strPlayerName);
- void drawHandler(void);
+ void handler(void);
private:
Camera _cam;
void buttonHandler(void);
+ void drawHandler(void);
/* Event handlers. */
- void onLeftBtnPressed(void);
- void onRightBtnPressed(void);
void onABtnPressed(void);
void onBBtnPressed(void);
};