aboutsummaryrefslogtreecommitdiff
path: root/game/player.h
diff options
context:
space:
mode:
authorjacopograndi <jak.sk8@hotmail.it>2021-08-29 13:57:41 +0200
committerjacopograndi <jak.sk8@hotmail.it>2021-08-29 13:57:41 +0200
commitace5c3f3093c50ff7fa6f8b281a377e3788abbd5 (patch)
tree8a52803dc2b777822e9b1cab148bec8798bfeadf /game/player.h
parenta8bcacc95045102e67f2feabbdddf79535837554 (diff)
adding techs
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;
};