コード例 #1
0
ファイル: QuadTree.cs プロジェクト: Lucodalack/tile
 public QuadTree(Rectangle bound)
 {
     this._root = new QuadNode(1, bound);
 }