12 lines
201 B
C#
12 lines
201 B
C#
|
|
using UnityEngine;
|
|||
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace PolyPerfect
|
|||
|
|
{
|
|||
|
|
[Serializable]
|
|||
|
|
public class AIState
|
|||
|
|
{
|
|||
|
|
public string stateName = "New State";
|
|||
|
|
public string animationBool = string.Empty;
|
|||
|
|
}
|
|||
|
|
}
|