mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-22 17:18:12 +01:00
24 lines
342 B
C++
24 lines
342 B
C++
#ifndef MOB_H
|
|
#define MOB_H
|
|
|
|
#include "entity.h"
|
|
#include "../entity_enums.h"
|
|
|
|
class Mob : public Entity {
|
|
GDCLASS(Mob, Entity);
|
|
|
|
public:
|
|
Mob();
|
|
|
|
EntityEnums::AIStates gets_ai_state() const;
|
|
void sets_ai_state(EntityEnums::AIStates state);
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
private:
|
|
EntityEnums::AIStates _sai_state;
|
|
};
|
|
|
|
#endif
|