mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-06-12 10:07:38 +02:00
Fan Club: start scene setup
This commit is contained in:
29
Assets/Scripts/Games/FanClub/FanClub.cs
Normal file
29
Assets/Scripts/Games/FanClub/FanClub.cs
Normal file
@ -0,0 +1,29 @@
|
||||
using RhythmHeavenMania.Util;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace RhythmHeavenMania.Games
|
||||
{
|
||||
// none yet
|
||||
//using Scripts_FanClub;
|
||||
|
||||
public class FanClub : Minigame
|
||||
{
|
||||
// userdata here
|
||||
|
||||
// end userdata
|
||||
|
||||
public static FanClub instance;
|
||||
|
||||
private void Awake()
|
||||
{
|
||||
instance = this;
|
||||
}
|
||||
|
||||
private void Update()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user