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