core/internal/watermill/watermillmsg/village.go

14 lines
463 B
Go

package watermillmsg
import "net/url"
type VillagesSyncedEventPayload struct {
ServerKey string `json:"serverKey"`
ServerURL *url.URL `json:"serverUrl"`
VersionCode string `json:"versionCode"`
NumVillages int `json:"numVillages"`
NumPlayerVillages int `json:"numPlayerVillages"`
NumBarbarianVillages int `json:"numBarbarianVillages"`
NumBonusVillages int `json:"numBonusVillages"`
}