Aura.Channel.Database.Account.GetPet C# (CSharp) 메소드

GetPet() 공개 메소드

Returns pet with the given entity id, or null, if entity wasn't found.
public GetPet ( long entityId ) : Aura.Channel.World.Entities.Pet
entityId long
리턴 Aura.Channel.World.Entities.Pet
		public Pet GetPet(long entityId)
		{
			return this.Pets.FirstOrDefault(a => a.EntityId == entityId);
		}