fix:1、添加项目。2、基本箭头生成
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using SGModule.ConfigLoader;
|
||||
|
||||
namespace IgnoreOPS
|
||||
{
|
||||
public class GameConfigModel : ConfigModel<GameConfigModel, GameBoard>
|
||||
{
|
||||
|
||||
public Dictionary<int, List<GameBoard>> game_conf = new Dictionary<int, List<GameBoard>>();
|
||||
|
||||
public GameConfigModel(string key) : base(key)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
public class GameBoard
|
||||
{
|
||||
public int level;
|
||||
public string board;
|
||||
public string stacked;
|
||||
public int item_type;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user