CultivationOfBrewing-2/Assets/Scripts/Project/Objects/Other/NPCTriggerController.cs

12 lines
255 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class NPCTriggerController : PermanentTriggerBase
{
public Action callback;
public NPCController npcController;
public bool Forbid_NpcCtrl;
}