#ifndef HOLESOME_PLAYER_SPAWNER_HPP #define HOLESOME_PLAYER_SPAWNER_HPP #include "../game_object.h" class PlayerSpawner : public GameObject { public: void update(Game *game) override; }; #endif //HOLESOME_PLAYER_SPAWNER_HPP