Files
tma-back/player.go
Smile Rex b7d33889fd fix
2026-01-22 10:01:15 +03:00

15 lines
173 B
Go

package main
import (
"github.com/gorilla/websocket"
)
type Player struct {
ID int64
Username string
Conn *websocket.Conn
X, Y float64
DX, DY float64
}