ecs/servers/game/data_old/audio_config.go
2025-06-04 18:17:39 +08:00

14 lines
194 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package data
type AudioConfig struct {
Id int `json:"id"` //索引ID
}
func (data *AudioConfig) id() int {
return data.Id
}
type AudioConfigTable struct {
table[int, *AudioConfig]
}