2026-06-02 10:26:44 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using SGModule.ConfigLoader;
|
|
|
|
|
|
2026-06-02 11:11:47 +08:00
|
|
|
namespace ZooMatch
|
2026-06-02 10:26:44 +08:00
|
|
|
{
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|