29 lines
550 B
C#
29 lines
550 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using Ichni.RhythmGame;
|
|
using Ichni.UI;
|
|
using Sirenix.OdinInspector;
|
|
using UnityEngine;
|
|
|
|
namespace Ichni.Menu
|
|
{
|
|
public partial class SongSelectionManager : SerializedMonoBehaviour
|
|
{
|
|
public static SongSelectionManager instance;
|
|
|
|
public SongSelectionUIPage songSelectionUIPage;
|
|
|
|
|
|
private void Awake()
|
|
{
|
|
instance = this;
|
|
}
|
|
|
|
}
|
|
|
|
public partial class SongSelectionManager
|
|
{
|
|
|
|
}
|
|
} |