mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-05-03 10:04:26 +02:00
15 lines
305 B
C#
15 lines
305 B
C#
using UnityEngine;
|
|
|
|
namespace RhythmHeavenMania.Games.TapTrial
|
|
{
|
|
public class TapTrialPlayer : MonoBehaviour
|
|
{
|
|
[Header("References")]
|
|
[System.NonSerialized] public Animator anim;
|
|
|
|
private void Start()
|
|
{
|
|
anim = GetComponent<Animator>();
|
|
}
|
|
}
|
|
} |