Improved network communication

This commit is contained in:
2024-01-24 20:57:31 +01:00
parent 26c52a00b3
commit 2738895efe
49 changed files with 427 additions and 625 deletions

6
server/core/Handler.go Normal file
View File

@ -0,0 +1,6 @@
package core
import "net"
// Handler is a byte code specific packet handler.
type Handler func([]byte, *net.UDPAddr, *Server) error