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 */
struct Keys {
bool forward,
backward,
left,
right,
jump,
shoot,
block;
bool forward = false,
backward = false,
left = false,
right = false,
jump = false,
shoot = false,
block = false;
};
struct States {
bool jumping,
shooting,
hit,
powerup,
dead,
still,
jumpshot,
running;
bool jumping = false,
shooting = false,
hit = false,
powerup = false,
dead = false,
still = false,
jumpshot = false,
running = false;
};
/* Structures de paquets */