mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 16:34:41 +01:00
19 lines
362 B
C#
19 lines
362 B
C#
namespace MoleMole
|
|
{
|
|
public class EvtFieldHit : BaseEvent
|
|
{
|
|
public string animEventID;
|
|
|
|
public EvtFieldHit(uint targetID, string animEventID)
|
|
: base(targetID)
|
|
{
|
|
this.animEventID = animEventID;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("{0} field hits target within by {1}", GetDebugName(targetID), animEventID);
|
|
}
|
|
}
|
|
}
|