mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 19:55:09 +00:00
15 lines
No EOL
305 B
C#
15 lines
No EOL
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>();
|
|
}
|
|
}
|
|
} |