mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-05-07 22:44:27 +02:00
25 lines
450 B
C#
25 lines
450 B
C#
using DG.Tweening;
|
|
using NaughtyBezierCurves;
|
|
using RhythmHeavenMania.Util;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace RhythmHeavenMania.Games.BlueBear
|
|
{
|
|
public class BlueBear : Minigame
|
|
{
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|