mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-22 17:18:12 +01:00
17 lines
160 B
C++
17 lines
160 B
C++
#ifndef PLAYER_H
|
|
#define PLAYER_H
|
|
|
|
#include "entity.h"
|
|
|
|
class Player : public Entity {
|
|
GDCLASS(Player, Entity);
|
|
|
|
public:
|
|
Player();
|
|
|
|
//private:
|
|
|
|
};
|
|
|
|
#endif
|