aboutsummaryrefslogtreecommitdiff
path: root/game/player.h
diff options
context:
space:
mode:
Diffstat (limited to 'game/player.h')
-rw-r--r--game/player.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/game/player.h b/game/player.h
index 2cee05f..ec4657e 100644
--- a/game/player.h
+++ b/game/player.h
@@ -1,10 +1,15 @@
#ifndef PLAYER_H
#define PLAYER_H
+#include <vector>
+
class Player {
public:
- Player (int r, int g, int b) : r(r), g(g), b(b) {}
+ Player (int r, int g, int b) : r(r), g(g), b(b) { }
+
+ std::vector<int> res { 0, 0 };
+ std::vector<int> techs;
int r, g, b;
};