rove/cmd/rove-server/player.go

14 lines
150 B
Go
Raw Normal View History

package main
import "github.com/google/uuid"
type Player struct {
id uuid.UUID
}
func NewPlayer() Player {
return Player{
id: uuid.New(),
}
}