剧情
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user