port from perforce
This commit is contained in:
16
aiwaz/Aiwaz.Common/Animations/Animation.cs
Normal file
16
aiwaz/Aiwaz.Common/Animations/Animation.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace Aiwaz.Common.Animations
|
||||
{
|
||||
abstract public class Animation
|
||||
{
|
||||
public double StartTime { get; set; }
|
||||
public double EndTime { get; set; }
|
||||
public string AnimationName;
|
||||
|
||||
public Animation()
|
||||
{
|
||||
AnimationName = "Erroneous";
|
||||
}
|
||||
|
||||
public abstract void Animate(double time, uint userData);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user