mapserver/server/player/player.go

12 lines
232 B
Go
Raw Normal View History

2019-01-29 09:53:59 +03:00
package player
2019-01-25 17:02:21 +03:00
type Player struct {
2019-01-29 20:00:00 +03:00
X int `json:"x"`
Y int `json:"y"`
Z int `json:"z"`
Name string `json:"name"`
HP int `json:"hp"`
Breath int `json:"breath"`
2019-01-25 17:02:21 +03:00
//TODO: stamina, skin, etc
}