mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 16:34:41 +01:00
27 lines
462 B
C#
27 lines
462 B
C#
namespace MoleMole
|
|
{
|
|
public class EvtDefendSuccess : BaseEvent, IEvtWithOtherID, IEvtWithAnimEventID
|
|
{
|
|
public readonly uint attackerID;
|
|
|
|
public readonly string skillID;
|
|
|
|
public EvtDefendSuccess(uint targetID, uint attackerID, string skillID)
|
|
: base(targetID)
|
|
{
|
|
this.attackerID = attackerID;
|
|
this.skillID = skillID;
|
|
}
|
|
|
|
public uint GetOtherID()
|
|
{
|
|
return attackerID;
|
|
}
|
|
|
|
public string GetAnimEventID()
|
|
{
|
|
return skillID;
|
|
}
|
|
}
|
|
}
|