namespace IgniteEngine.Content.GameObjects { /// /// Enum that determined whether an object is male or female. /// public enum Gender { G_FEMALE = 0, G_MALE = 1, MAX_GENDER = 2 } }