コード例 #1
0
ファイル: OrbStack.cs プロジェクト: AttilaGodspeed/VoidGame
 public void pop(Vector3 location)
 {
     temp = stack.Pop();
     if (temp != null)
     {
         temp.deploy(location);
     }
 }