mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 08:25:20 +01:00
19 lines
355 B
C#
19 lines
355 B
C#
namespace MoleMole
|
|
{
|
|
public class EvtAttackStart : BaseEvent
|
|
{
|
|
public readonly string skillID;
|
|
|
|
public EvtAttackStart(uint targetID, string skillID)
|
|
: base(targetID)
|
|
{
|
|
this.skillID = skillID;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("{0} starts attack, skillID is {1}", GetDebugName(targetID), skillID);
|
|
}
|
|
}
|
|
}
|