Erwan
-fixed bugs with lifelink
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
#include "../include/WEvent.h"
|
||||
#include "../include/MTGCardInstance.h"
|
||||
#include "../include/MTGGameZones.h"
|
||||
#include "../include/Damage.h"
|
||||
|
||||
WEvent::WEvent(int _type){
|
||||
type=_type;
|
||||
@@ -10,4 +11,8 @@ WEventZoneChange::WEventZoneChange(MTGCardInstance * _card, MTGGameZone * _from,
|
||||
card = _card;
|
||||
from = _from;
|
||||
to = _to;
|
||||
}
|
||||
|
||||
WEventDamage::WEventDamage(Damage *_damage):WEvent(DAMAGE){
|
||||
damage = _damage;
|
||||
}
|
||||
Reference in New Issue
Block a user