Files
tma-back/player.go
Smile Rex 9033264a15 fix
2026-01-21 19:14:05 +03:00

15 lines
174 B
Go

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