This commit is contained in:
SoulliesOfficial
2025-06-13 14:59:58 -04:00
parent 27529d44dc
commit b9e6a9ab25
143 changed files with 7254 additions and 1906 deletions

View File

@@ -1,18 +1,26 @@
using System;
using System.Collections;
using System.Collections.Generic;
using Ichni.RhythmGame;
using Sirenix.OdinInspector;
using UnityEngine;
public class SongSelectionManager : MonoBehaviour
namespace Ichni.Menu
{
// Start is called before the first frame update
void Start()
public partial class SongSelectionManager : SerializedMonoBehaviour
{
}
public static SongSelectionManager instance;
// Update is called once per frame
void Update()
{
private void Awake()
{
instance = this;
}
}
}
public partial class SongSelectionManager
{
}
}