コード例 #1
0
ファイル: TalentTests.cs プロジェクト: pallmall/WCell
 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
ファイル: VendorTests.cs プロジェクト: KroneckerX/WCell
 private static void EnsureNPC(ref NPC npc, NPCPool pool)
 {
     npc = pool.CreateVendor();
     npc.EnsureInWorldAndLiving();
 }