Ejemplo n.º 1
0
 private static void EnsureNPC(ref NPC npc, NPCPool pool)
 {
     //npc = pool.CreateTrainer();
     npc.EnsureInWorldAndLiving();
 }
Ejemplo n.º 2
0
 private void EnsurePet(ref NPC npc, NPCPool pool)
 {
     npc = pool.CreateMob();
     npc.EnsureInWorldAndLiving();
 }
Ejemplo n.º 3
0
 private static void EnsureNPC(ref NPC npc, NPCPool pool)
 {
     npc = pool.CreateVendor();
     npc.EnsureInWorldAndLiving();
 }