Files
Simulation/Assets/Scripts/ActionAnimator/ActionAnimator.cs
2025-07-16 16:31:18 +09:00

20 lines
379 B
C#

using UnityEngine;
public abstract class ActionAnimator : MonoBehaviour
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
}
public abstract void AnimationStart();
public abstract void AnimationEnd();
}