Files
Cielonos/Assets/Scripts/MainGame/Interactions/ExitGate.cs
SoulliesOfficial 50ee502684 完善
2026-02-13 09:22:11 -05:00

18 lines
418 B
C#

using Cielonos.Core.Interaction;
using UnityEngine;
namespace Cielonos.MainGame.Interactions
{
public class ExitGate : InteractableObjectBase
{
protected override void InitializeChoices()
{
choices.Add(new InteractionChoice("Go to Next Zone", GoToNextZone));
}
private void GoToNextZone()
{
MapManager.Instance.GoToNextZone();
}
}
}