SQC-15_online #1

Merged
memartel merged 349 commits from SQC-15_online into master 2023-12-10 17:41:26 -05:00
Showing only changes of commit 0fb5c85660 - Show all commits

View File

@@ -38,24 +38,24 @@ namespace netprot {
/* Sous-structures */ /* Sous-structures */
struct Keys { struct Keys {
bool forward, bool forward = false,
backward, backward = false,
left, left = false,
right, right = false,
jump, jump = false,
shoot, shoot = false,
block; block = false;
}; };
struct States { struct States {
bool jumping, bool jumping = false,
shooting, shooting = false,
hit, hit = false,
powerup, powerup = false,
dead, dead = false,
still, still = false,
jumpshot, jumpshot = false,
running; running = false;
}; };
/* Structures de paquets */ /* Structures de paquets */