mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 16:34:41 +01:00
24 lines
421 B
C#
24 lines
421 B
C#
namespace MoleMole
|
|
{
|
|
public class EvtFieldExit : BaseEvent, IEvtWithOtherID
|
|
{
|
|
public readonly uint otherID;
|
|
|
|
public EvtFieldExit(uint targetID, uint otherID)
|
|
: base(targetID)
|
|
{
|
|
this.otherID = otherID;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("{0} exiting field {1}", GetDebugName(otherID), GetDebugName(targetID));
|
|
}
|
|
|
|
public uint GetOtherID()
|
|
{
|
|
return otherID;
|
|
}
|
|
}
|
|
}
|