using UnityEngine; namespace DDD { public class RestaurantCharacterAnimation : MonoBehaviour { protected SpineController _spineController; protected virtual void Awake() { _spineController = GetComponent(); } protected virtual void Start() { } protected virtual void OnDestroy() { } public bool IsPlayingAnimation() { // TODO : Implement this return false; } } }