fix:1、修复bug。2、删除json表,改为配置加载
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System.Collections.Generic;
|
||||
using SGModule.ConfigLoader;
|
||||
|
||||
namespace IgnoreOPS
|
||||
{
|
||||
public class ArrowGameConfigModel : ConfigModel<ArrowGameConfigModel, ArrowGameConfig>
|
||||
{
|
||||
public ArrowGameConfigModel(string key) : base(key)
|
||||
{
|
||||
}
|
||||
}
|
||||
public class ArrowGameConfig
|
||||
{
|
||||
public int id;
|
||||
public string levelName;
|
||||
public int gridRows;
|
||||
public int gridCols;
|
||||
public int pointSpacing;
|
||||
public string arrows;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user