修复读表引号问题

This commit is contained in:
flswld
2023-03-28 17:19:27 +08:00
parent ddf8700c33
commit a175417ebf
6 changed files with 167 additions and 160 deletions

View File

@@ -6,11 +6,10 @@ import (
// GadgetData 物件配置表
type GadgetData struct {
GadgetId int32 `csv:"ID"`
Type int32 `csv:"类型,omitempty"`
DefaultCamp int32 `csv:"默认阵营,omitempty"`
CanInteract int32 `csv:"能否交互,omitempty"`
Desc string `csv:"描述,omitempty"`
GadgetId int32 `csv:"ID"`
Type int32 `csv:"类型,omitempty"`
DefaultCamp int32 `csv:"默认阵营,omitempty"`
CanInteract int32 `csv:"能否交互,omitempty"`
}
func (g *GameDataConfig) loadGadgetData() {