Initial Commit
This commit is contained in:
commit
ee5c2f922d
2255 changed files with 547750 additions and 0 deletions
24
Assets/Scripts/AI/FSM/States.cs
Normal file
24
Assets/Scripts/AI/FSM/States.cs
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
using Unity.Entities;
|
||||
|
||||
namespace AI.FSM
|
||||
{
|
||||
public struct FsmState : IComponentData
|
||||
{
|
||||
}
|
||||
|
||||
public struct MoveState : IComponentData
|
||||
{
|
||||
}
|
||||
|
||||
public struct IdleState : IComponentData
|
||||
{
|
||||
}
|
||||
|
||||
public struct IdleInitializedState : IComponentData
|
||||
{
|
||||
}
|
||||
|
||||
public struct PerformActionState : IComponentData
|
||||
{
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue