diff options
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 |