Files
tma-back/player.go
2026-01-21 18:49:12 +03:00

14 lines
149 B
Go

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