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