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