Files
RedHotRoast-ios/Assets/RedHotRoast/Define/Model/Config/Game/GameConfigModel.cs
T

15 lines
321 B
C#

using System.Collections.Generic;
namespace RedHotRoast {
public class GameConfigModel {
public Dictionary<int, List<GameBoard>> game_conf = new();
}
public class GameBoard {
public int level;
public string board;
public string stacked;
public int item_type;
}
}