Refactored server flow

This commit is contained in:
2024-01-29 17:51:31 +01:00
parent 6f49400770
commit bf08205c7d
15 changed files with 232 additions and 154 deletions

22
server/game/Packet.go Normal file
View File

@ -0,0 +1,22 @@
package game
import (
"net"
)
const (
Ping = 1
Login = 2
Logout = 3
PlayerAdd = 10
PlayerRemove = 11
Move = 12
Jump = 13
PlayerAttack = 14
Chat = 20
)
type Packet struct {
Data []byte
Address *net.UDPAddr
}