NBTExplorer/SubstrateCS/Source/Entities/EntityCow.cs
2011-10-08 00:01:51 -04:00

46 lines
938 B
C#

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<Entity> Members
public override bool ValidateTree (TagNode tree)
{
return new NbtVerifier(tree, CowSchema).Verify();
}
#endregion
#region ICopyable<Entity> Members
public override TypedEntity Copy ()
{
return new EntityCow(this);
}
#endregion
}
}