TEngine Commit 1.0.0

TEngine Commit 1.0.0
This commit is contained in:
ALEXTANG
2022-05-20 23:19:50 +08:00
parent ea8c79aa6d
commit 90ae4874a9
474 changed files with 110489 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
//
// Auto Generated Code By excel2json
// https://neil3d.gitee.io/coding/excel2json.html
// 1. 每个 Sheet 形成一个 Struct 定义, Sheet 的名称作为 Struct 的名称
// 2. 表格约定:第一行是变量名称,第二行是变量类型
// Generate From FeatureConfig.xlsx
public class FeatureConfig
{
public int ID; // 特性ID
public string Name; // 特性名称
public int[] BuffIDArray; // BuffID数组
public int Type; // 类型
public int OnlyOne; // 是否唯一
public int UseColor; // 使用颜色
public string ColorStr; // 颜色Str
public float Rate; // 概率
public string Desc; // 特性描述
}
// End of Auto Generated Code