DCAnimatorV2/Runtime/Core/IAnimatable.cs

12 lines
332 B
C#
Raw Permalink Normal View History

2025-07-13 18:33:06 +00:00
using System;
namespace DC.Animator.Core
{
public interface IAnimatable
{
bool SupportsProperty(AnimatableProperty property);
object GetValue(AnimatableProperty property);
void SetValue(AnimatableProperty property, object value);
Type GetPropertyType(AnimatableProperty property);
}
}