mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-12 22:44:35 +01:00
19 lines
358 B
C#
19 lines
358 B
C#
namespace MoleMole
|
|
{
|
|
public class EvtBuffAdd : BaseEvent
|
|
{
|
|
public AbilityState abilityState;
|
|
|
|
public EvtBuffAdd(uint targetID, AbilityState abilityState)
|
|
: base(targetID)
|
|
{
|
|
this.abilityState = abilityState;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("{0} add buff {1}", GetDebugName(targetID), abilityState);
|
|
}
|
|
}
|
|
}
|