#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