Everything is false.
This commit is contained in:
parent
db854c77b2
commit
0fb5c85660
@ -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 */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user