mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-15 16:04:44 +01:00
16 lines
248 B
C#
16 lines
248 B
C#
namespace MoleMole
|
|
{
|
|
public class EvtFieldClear : BaseEvent
|
|
{
|
|
public EvtFieldClear(uint targetID)
|
|
: base(targetID)
|
|
{
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("{0} clear field", GetDebugName(targetID));
|
|
}
|
|
}
|
|
}
|