mirror of
https://github.com/CPunch/gopenfusion.git
synced 2024-11-14 12:00:05 +00:00
11 lines
191 B
Go
11 lines
191 B
Go
package server
|
|
|
|
import (
|
|
"github.com/CPunch/GopenFusion/protocol"
|
|
)
|
|
|
|
type Server interface {
|
|
HandlePacket(client *Client, typeID uint32, pkt *protocol.Packet)
|
|
Disconnect(client *Client)
|
|
}
|