Files
Cielonos/Assets/Scripts/SLSUtilities/FunctionalAnimation/IFuncAnimExecutor.cs

11 lines
250 B
C#
Raw Normal View History

2026-01-17 11:35:49 -05:00
using UnityEngine;
namespace SLSUtilities.FunctionalAnimation
{
public interface IFuncAnimExecutor
{
2026-06-05 04:21:00 -04:00
public Animator Animator { get; }
public Transform Transform { get; }
public Vector3 CenterPosition { get; }
2026-01-17 11:35:49 -05:00
}
}