#ifndef SINGLE_PLAYER_HH #define SINGLE_PLAYER_HH #include "GameState.hh" class SinglePlayer : public LocalPlayer { public: SinglePlayer (GameState &state) : LocalPlayer(state, Vector(PLAYER_INITIAL_X, PLAYER_INITIAL_Y), true) { } }; #endif /* SINGLE_PLAYER_HH */