Everything is false.

This commit is contained in:
MarcEricMartel 2023-12-06 15:52:00 -05:00
parent db854c77b2
commit 0fb5c85660

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 */