Files
tma-back/models/player.go
Smile Rex d3a19d5066 new files
2026-01-14 11:34:03 +03:00

20 lines
214 B
Go

package models
import "github.com/gorilla/websocket"
type Player struct {
ID uint32
X float32
Y float32
Z float32
InputX float32
InputZ float32
Name string
PhotoURL string
Conn *websocket.Conn
}