From a8bcacc95045102e67f2feabbdddf79535837554 Mon Sep 17 00:00:00 2001 From: jacopograndi Date: Thu, 19 Aug 2021 18:46:51 +0200 Subject: forgot to make repo until now --- game/player.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 game/player.h (limited to 'game/player.h') 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 -- cgit v1.2.3-54-g00ecf