9 lines
194 B
C#
9 lines
194 B
C#
namespace SharpUI.Source.Common.UI.Util.Animation
|
|
{
|
|
public interface IAnimationState
|
|
{
|
|
void OnAnimationBegin();
|
|
void OnAnimationEnd();
|
|
bool IsAnimating();
|
|
}
|
|
} |