public RoomGenPostProcSpecific(int width, int height) : base(width, height)
 {
     PostProcMask = new PostProcTile[width][];
     for (int xx = 0; xx < width; xx++)
     {
         PostProcMask[xx] = new PostProcTile[height];
     }
 }
Beispiel #2
0
 public virtual void CreateNew(int width, int height)
 {
     Map.CreateNew(width, height);
     PostProcGrid = new PostProcTile[width][];
     for (int ii = 0; ii < width; ii++)
     {
         PostProcGrid[ii] = new PostProcTile[height];
         for (int jj = 0; jj < height; jj++)
         {
             PostProcGrid[ii][jj] = new PostProcTile();
         }
     }
 }