コード例 #1
0
        public Knoten[,] getKnotenMap()
        {
            Knoten[,] Knotenmap = new Knoten[statsGame.mapMaxSize[0], statsGame.mapMaxSize[1]];

            for (int x = 0; x < statsGame.mapMaxSize[0]; x++)
            {
                for (int y = 0; y < statsGame.mapMaxSize[1]; y++)
                {

                }
            }

            return Knotenmap;
        }
コード例 #2
0
ファイル: Knoten.cs プロジェクト: boomOr/2DTopDownShootEmAll
 public Knoten(Knoten vorgaenger,int[] point)
 {
     this.vorgaenger = vorgaenger;
     this.point = point;
 }