25 lines
556 B
C#
25 lines
556 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using Ichni.Menu.UI;
|
|
using Ichni.UI;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace Ichni.Story.UI
|
|
{
|
|
public class StoryUIPage : UIPageBase
|
|
{
|
|
public MessageBox messageBox;
|
|
public Button backButton;
|
|
|
|
protected override void Awake()
|
|
{
|
|
base.Awake();
|
|
backButton.onClick.AddListener(() =>
|
|
{
|
|
FadeOut();
|
|
MenuManager.instance.chapterSelectionUIPage.FadeIn();
|
|
});
|
|
}
|
|
}
|
|
} |