예제 #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;
 }
예제 #2
0
파일: GridData.cs 프로젝트: kof1016/Cluedo
		public GridData(int index, GRID_TYPE type, Neighbor[] neighbors)
		{
			Index = index;

			GridType = type;

			Neighbors = neighbors;
		}
예제 #3
0
파일: GridData.cs 프로젝트: kof1016/Cluedo
        public GridData(int index, GRID_TYPE type, Neighbor[] neighbors)
        {
            Index = index;

            GridType = type;

            Neighbors = neighbors;
        }
예제 #4
0
 public void initialize(UIPlane plane, GRID_TYPE cellType)
 {
 }
예제 #5
0
 public void PlaceMark(int spot, GRID_TYPE type)
 {
     grid[spot] = (int)type;
 }