mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-04-30 19:04:26 +02:00
16 lines
272 B
C#
16 lines
272 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace RhythmHeavenMania.Games
|
|
{
|
|
public class Minigame : MonoBehaviour
|
|
{
|
|
public int firstEnable = 0;
|
|
|
|
public virtual void OnGameSwitch()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |