88ab6bcee7
Add Shop panel & saving module
18 lines
307 B
C#
18 lines
307 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class NPC : MonoBehaviour
|
|
{
|
|
|
|
public string Name;
|
|
|
|
public NPCStateEnum State = NPCStateEnum.Pending;
|
|
|
|
|
|
public void ChangeState(NPCStateEnum _newState)
|
|
{
|
|
State = _newState;
|
|
}
|
|
}
|