12 lines
332 B
C#
12 lines
332 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|