Refactored server flow
This commit is contained in:
22
server/game/Packet.go
Normal file
22
server/game/Packet.go
Normal 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
|
||||
}
|
Reference in New Issue
Block a user