mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-06 02:15:32 +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")
|
||||
char success;
|
||||
char block;
|
||||
bool success;
|
||||
bool block;
|
||||
float damage;
|
||||
char pressed;
|
||||
char knockdown;
|
||||
bool pressed;
|
||||
bool knockdown;
|
||||
};
|
||||
|
||||
struct Animation
|
||||
|
|
Loading…
Reference in a new issue