mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 08:25:20 +01:00
22 lines
473 B
C#
22 lines
473 B
C#
namespace MoleMole
|
|
{
|
|
public class EvtDamageLanded : BaseEvent
|
|
{
|
|
public uint attackeeID;
|
|
|
|
public AttackResult attackResult;
|
|
|
|
public EvtDamageLanded(uint fromID, uint attackeeID, AttackResult attackResult)
|
|
: base(fromID)
|
|
{
|
|
this.attackeeID = attackeeID;
|
|
this.attackResult = attackResult;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("{0} non aattack damage Landed on {1}", GetDebugName(targetID), GetDebugName(attackeeID));
|
|
}
|
|
}
|
|
}
|