mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 08:25:20 +01:00
21 lines
447 B
C#
21 lines
447 B
C#
namespace MoleMole
|
|
{
|
|
public class EvtChargeRelease : BaseEvent
|
|
{
|
|
public bool isSwitchRelease;
|
|
|
|
public string releaseSkillID;
|
|
|
|
public EvtChargeRelease(uint targetID, string releaseSkillID)
|
|
: base(targetID)
|
|
{
|
|
this.releaseSkillID = releaseSkillID;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("{0} charge {1} release, Is switch release: {2}", GetDebugName(targetID), releaseSkillID, isSwitchRelease);
|
|
}
|
|
}
|
|
}
|