11 lines
184 B
C#
11 lines
184 B
C#
namespace Syntriax.Engine.Systems.Tween;
|
|
|
|
public enum TweenState
|
|
{
|
|
Idle = 0b00001,
|
|
Playing = 0b00010,
|
|
Paused = 0b00100,
|
|
Cancelled = 0b01000,
|
|
Completed = 0b10000,
|
|
}
|