2025-06-06 10:14:55 -04:00
|
|
|
using System;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Ichni.Menu;
|
|
|
|
|
using Ichni.UI;
|
|
|
|
|
using Sirenix.OdinInspector;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace Ichni
|
|
|
|
|
{
|
|
|
|
|
public partial class ChapterSelectionManager : SerializedMonoBehaviour
|
|
|
|
|
{
|
|
|
|
|
public static ChapterSelectionManager instance;
|
|
|
|
|
|
|
|
|
|
public ChapterSelectionUIPage chapterSelectionUIPage;
|
|
|
|
|
public List<ChapterSelectionUnit> chapters;
|
2025-06-14 14:42:49 -04:00
|
|
|
public string currentChapter;
|
2025-06-06 10:14:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public partial class ChapterSelectionManager
|
|
|
|
|
{
|
|
|
|
|
private void Awake()
|
|
|
|
|
{
|
|
|
|
|
instance = this;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|