mirror of
https://github.com/edo9300/ygopro-core
synced 2026-08-25 16:23:07 -04:00
Default initialize tevent members
This commit is contained in:
parent
0b31b9b56d
commit
5628753a4f
1 changed files with 9 additions and 9 deletions
18
field.h
18
field.h
|
|
@ -28,15 +28,15 @@ class group;
|
|||
class effect;
|
||||
|
||||
struct tevent {
|
||||
card* trigger_card;
|
||||
group* event_cards;
|
||||
effect* reason_effect;
|
||||
uint32_t event_code;
|
||||
uint32_t event_value;
|
||||
uint32_t reason;
|
||||
uint8_t event_player;
|
||||
uint8_t reason_player;
|
||||
uint32_t global_id;
|
||||
card* trigger_card{};
|
||||
group* event_cards{};
|
||||
effect* reason_effect{};
|
||||
uint32_t event_code{};
|
||||
uint32_t event_value{};
|
||||
uint32_t reason{};
|
||||
uint8_t event_player{};
|
||||
uint8_t reason_player{};
|
||||
uint32_t global_id{};
|
||||
bool operator< (const tevent& v) const;
|
||||
};
|
||||
struct optarget {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue