#ifndef PLAYER_H #define PLAYER_H #include class Player { public: Player (int r, int g, int b) : r(r), g(g), b(b) { } std::vector res { 0, 0 }; std::vector techs; int r, g, b; }; #endif