15 lines
221 B
C#
15 lines
221 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
[System.Serializable]
|
||
|
public enum NPCStateEnum
|
||
|
{
|
||
|
None,
|
||
|
Pending,
|
||
|
Walking,
|
||
|
Attacking,
|
||
|
Talking,
|
||
|
Trading
|
||
|
}
|