Files
ichni_Official/Assets/Scripts/Menu/ChapterSelection/ChapterSelectionManager.cs
SoulliesOfficial 70b2a43824 update
2025-08-22 14:54:40 -04:00

29 lines
706 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using Ichni.Menu;
using Ichni.RhythmGame;
using Ichni.UI;
using Sirenix.OdinInspector;
namespace Ichni
{
public partial class ChapterSelectionManager : SerializedMonoBehaviour
{
public static ChapterSelectionManager instance;
public ChapterSelectionUIPage chapterSelectionUIPage;
public List<ChapterSelectionUnit> chapters;
public TutorialCollection tutorialCollection;
public ChapterSelectionUnit currentChapter;
}
public partial class ChapterSelectionManager
{
private void Awake()
{
instance = this;
}
}
}