Files
ichni_Official/Assets/Scripts/Story/StoryUI/StoryUIPage.cs

25 lines
556 B
C#
Raw Normal View History

2025-06-03 02:42:28 -04:00
using System.Collections;
using System.Collections.Generic;
2025-08-11 14:04:06 -04:00
using Ichni.Menu.UI;
2025-06-14 14:42:49 -04:00
using Ichni.UI;
2025-06-03 02:42:28 -04:00
using UnityEngine;
2025-08-11 14:04:06 -04:00
using UnityEngine.UI;
2025-06-03 02:42:28 -04:00
2025-06-14 14:42:49 -04:00
namespace Ichni.Story.UI
2025-06-03 02:42:28 -04:00
{
2025-06-06 10:14:55 -04:00
public class StoryUIPage : UIPageBase
2025-06-03 02:42:28 -04:00
{
2025-08-11 14:04:06 -04:00
public MessageBox messageBox;
public Button backButton;
protected override void Awake()
{
base.Awake();
backButton.onClick.AddListener(() =>
{
FadeOut();
MenuManager.instance.chapterSelectionUIPage.FadeIn();
});
}
2025-06-03 02:42:28 -04:00
}
}