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