Files
Manual-Intervention-Required/Assets/Game/Goal/ObjectiveEnterGoal.cs
2026-03-08 18:50:02 -06:00

15 lines
297 B
C#

using UnityEngine;
public class ObjectiveEnterGoal : ObjectiveHandler
{
public override string Description => "Enter the goal.";
override public void OnObjectiveSuccess() {
Debug.Log("Wow!");
}
override public void OnObjectiveFail() {
Debug.Log("Sad!");
}
}