gopenfusion/server/server.go

11 lines
191 B
Go
Raw Normal View History

package server
import (
2023-03-07 08:06:40 +00:00
"github.com/CPunch/GopenFusion/protocol"
)
type Server interface {
HandlePacket(client *Client, typeID uint32, pkt *protocol.Packet)
Disconnect(client *Client)
}