10 lines
121 B
Go
10 lines
121 B
Go
package models
|
|
|
|
import "github.com/gorilla/websocket"
|
|
|
|
type Player struct {
|
|
Entity
|
|
Name string
|
|
Conn *websocket.Conn
|
|
}
|