diff options
author | jacopograndi <jak.sk8@hotmail.it> | 2021-08-19 18:46:51 +0200 |
---|---|---|
committer | jacopograndi <jak.sk8@hotmail.it> | 2021-08-19 18:46:51 +0200 |
commit | a8bcacc95045102e67f2feabbdddf79535837554 (patch) | |
tree | 5781dd4cb2fe66b67deab84ff4641b7e21b9c174 /game/player.h |
forgot to make repo until now
Diffstat (limited to 'game/player.h')
-rw-r--r-- | game/player.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/game/player.h b/game/player.h new file mode 100644 index 0000000..2cee05f --- /dev/null +++ b/game/player.h @@ -0,0 +1,12 @@ +#ifndef PLAYER_H +#define PLAYER_H + + +class Player { + public: + Player (int r, int g, int b) : r(r), g(g), b(b) {} + + int r, g, b; +}; + +#endif
\ No newline at end of file |