mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-11-03 16:26:42 +00:00
[General] Change chars into bools in mwmp::Attack for clarity
This commit is contained in:
parent
7c45888f05
commit
b1a394cd02
1 changed files with 4 additions and 4 deletions
|
|
@ -29,11 +29,11 @@ namespace mwmp
|
||||||
};
|
};
|
||||||
|
|
||||||
std::string spellId; // id of spell (e.g. "fireball")
|
std::string spellId; // id of spell (e.g. "fireball")
|
||||||
char success;
|
bool success;
|
||||||
char block;
|
bool block;
|
||||||
float damage;
|
float damage;
|
||||||
char pressed;
|
bool pressed;
|
||||||
char knockdown;
|
bool knockdown;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct Animation
|
struct Animation
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue