14 lines
233 B
C++
14 lines
233 B
C++
#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
|