1 2 3 4 5 6 7 8 9 10 11 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