using System; namespace Oni.Physics { [Flags] internal enum ObjectAnimationFlags { None = 0, Loop = 0x0001, PingPong = 0x0002, RandomStart = 0x0004, AutoStart = 0x0008, Local = 0x0010 } }