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