fix error vectorlist生成List<List<float>>
This commit is contained in:
Binary file not shown.
@@ -43,7 +43,7 @@ namespace ExcelTool
|
||||
{
|
||||
sb.Append(string.Format("\tpublic List<float> {0}", headers[i].FieldName));
|
||||
}
|
||||
else if (type.Equals("list"))
|
||||
else if (type.Equals("vectorlist"))
|
||||
{
|
||||
sb.Append(string.Format("\tpublic List<List<float>> {0}", headers[i].FieldName));
|
||||
}
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -34,7 +34,7 @@ public partial class avatarguideTest : IBinarySerializable
|
||||
/// <summary>
|
||||
/// 格子
|
||||
/// </summary>
|
||||
public vectorlist Grid { get; set; }
|
||||
public List<List<float>> Grid { get; set; }
|
||||
|
||||
public void DeSerialize(BinaryReader reader)
|
||||
{
|
||||
|
||||
@@ -30,7 +30,7 @@ public partial class battleScene : IBinarySerializable
|
||||
/// <summary>
|
||||
/// 出生点vector列表
|
||||
/// </summary>
|
||||
public vectorlist EnemyBornPoints { get; set; }
|
||||
public List<List<float>> EnemyBornPoints { get; set; }
|
||||
/// <summary>
|
||||
/// 出生点对应的小怪id
|
||||
/// </summary>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user