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