using System; namespace Oni.Totoro { [Flags] internal enum FootstepType { None = 0, Left = 1, Right = 2 } }