holesome/src/game/player/player_spawner.hpp

15 lines
233 B
C++
Raw Normal View History

#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