ecs/proto/old/external_game_counter.go

18 lines
300 B
Go
Raw Normal View History

2025-06-04 18:17:39 +08:00
package old
type Counter struct {
Type uint32 `json:"Type"`
Id uint32 `json:"Id"`
Time int64 `json:"Time"`
Daily uint32 `json:"Daily"`
Total uint32 `json:"Total"`
}
type MsgCounterListAck struct {
List []*Counter `json:"List,omitempty"`
}
type MsgCounterChangeAck struct {
*Counter
}