new files

This commit is contained in:
Smile Rex
2026-01-14 11:34:03 +03:00
parent 7acd741749
commit d3a19d5066
4 changed files with 105 additions and 183 deletions

19
models/player.go Normal file
View File

@@ -0,0 +1,19 @@
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
}