Files
Gameshit/GOAP/Assets/Scrips/Actions/GoToHospital.cs
2025-05-31 15:54:23 +02:00

15 lines
210 B
C#

using UnityEngine;
public class GoToHospital : AI_Action
{
public override bool PrePerform()
{
return true;
}
public override bool PostPerform()
{
return true;
}
}