Exemplo n.º 1
0
 public CrossingGrid(int rows, int columns, float offsetY, GRID_TYPE gridType)
 {
     this.rows     = rows;
     this.columns  = columns;
     this.offsetY  = offsetY;
     this.gridType = gridType;
 }
Exemplo n.º 2
0
		public GridData(int index, GRID_TYPE type, Neighbor[] neighbors)
		{
			Index = index;

			GridType = type;

			Neighbors = neighbors;
		}
Exemplo n.º 3
0
        public GridData(int index, GRID_TYPE type, Neighbor[] neighbors)
        {
            Index = index;

            GridType = type;

            Neighbors = neighbors;
        }
Exemplo n.º 4
0
 public void initialize(UIPlane plane, GRID_TYPE cellType)
 {
 }
Exemplo n.º 5
0
 public void PlaceMark(int spot, GRID_TYPE type)
 {
     grid[spot] = (int)type;
 }