コード例 #1
0
ファイル: GameObject.java プロジェクト: msoftware/bdx
 public void end() {
   for (GameObject g : new ArrayList<GameObject>(children)) {
     g.end();
   }
   endNoChildren();
 }