15 lines
297 B
C#
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!");
|
|
}
|
|
}
|