using System; using System.Collections.Generic; using System.Text; namespace Substrate.Entities { using Substrate.Nbt; public class EntityCow : EntityMob { public static readonly SchemaNodeCompound CowSchema = MobSchema.MergeInto(new SchemaNodeCompound("") { new SchemaNodeString("id", "Cow"), }); public EntityCow () : base("Cow") { } public EntityCow (TypedEntity e) : base(e) { } #region INBTObject Members public override bool ValidateTree (TagNode tree) { return new NbtVerifier(tree, CowSchema).Verify(); } #endregion #region ICopyable Members public override TypedEntity Copy () { return new EntityCow(this); } #endregion } }