Added network skill usage

This commit is contained in:
2024-02-16 15:51:23 +01:00
parent 89d730f0ae
commit c228d4e25a
12 changed files with 77 additions and 21 deletions

View File

@ -6,15 +6,15 @@ import (
// Byte prefixes to indicate the packet type.
const (
Ping = 1
Login = 2
Logout = 3
PlayerAdd = 10
PlayerRemove = 11
PlayerMove = 12
PlayerJump = 13
PlayerAttack = 14
Chat = 20
Ping = 1
Login = 2
Logout = 3
PlayerAdd = 10
PlayerRemove = 11
PlayerMove = 12
PlayerJump = 13
PlayerUseSkill = 14
Chat = 20
)
// Packet represents a single UDP datagram.