You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
322 B
Go
12 lines
322 B
Go
package model
|
|
|
|
// TownObject represents a decorative prop placed in a town.
|
|
type TownObject struct {
|
|
ID int64 `json:"id"`
|
|
TownID int64 `json:"townId"`
|
|
ObjectType string `json:"objectType"`
|
|
Variant int `json:"variant"`
|
|
OffsetX float64 `json:"offsetX"`
|
|
OffsetY float64 `json:"offsetY"`
|
|
}
|