using System; namespace Oni.Physics { internal enum ObjectPhysicsType { None = 0, Static = 1, Linear = 2, Animated = 3, Newton = 4, } }