mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-22 17:18:12 +01:00
15 lines
190 B
C++
15 lines
190 B
C++
#pragma once
|
|
#include <System/System.h>
|
|
|
|
using namespace System;
|
|
namespace BS {
|
|
namespace AI {
|
|
enum class AIStates{
|
|
STATE_OFF,
|
|
STATE_STAND,
|
|
STATE_DEAD,
|
|
STATE_ATTACK
|
|
};
|
|
}
|
|
}
|