ecs/servers/game/data_old/audio_config.go

14 lines
194 B
Go
Raw Normal View History

2025-06-04 18:17:39 +08:00
package data
type AudioConfig struct {
Id int `json:"id"` //索引ID
}
func (data *AudioConfig) id() int {
return data.Id
}
type AudioConfigTable struct {
table[int, *AudioConfig]
}