예제 #1
0
 private static void EnsureNPC(ref NPC npc, NPCPool pool)
 {
     //npc = pool.CreateTrainer();
     npc.EnsureInWorldAndLiving();
 }
예제 #2
0
파일: PetTests.cs 프로젝트: pallmall/WCell
 private void EnsurePet(ref NPC npc, NPCPool pool)
 {
     npc = pool.CreateMob();
     npc.EnsureInWorldAndLiving();
 }
예제 #3
0
 private static void EnsureNPC(ref NPC npc, NPCPool pool)
 {
     npc = pool.CreateVendor();
     npc.EnsureInWorldAndLiving();
 }