Improved code quality

This commit is contained in:
2024-01-30 11:33:32 +01:00
parent 30c7d3d609
commit 9c3d12bb50
11 changed files with 78 additions and 80 deletions

View File

@ -4,18 +4,20 @@ import (
"net"
)
// Byte prefixes to indicate the packet type.
const (
Ping = 1
Login = 2
Logout = 3
PlayerAdd = 10
PlayerRemove = 11
Move = 12
Jump = 13
PlayerMove = 12
PlayerJump = 13
PlayerAttack = 14
Chat = 20
)
// Packet represents a single UDP datagram.
type Packet struct {
Data []byte
Address *net.UDPAddr