Files
go-mc/server/gameplay.go

11 lines
184 B
Go

package server
import (
"github.com/Tnze/go-mc/net"
"github.com/google/uuid"
)
type GamePlay interface {
AcceptPlayer(name string, id uuid.UUID, protocol int32, conn *net.Conn)
}