mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-12 22:44:35 +01:00
19 lines
353 B
C#
19 lines
353 B
C#
namespace MoleMole
|
|
{
|
|
public class EvtPropObjectCreated : BaseEvent
|
|
{
|
|
public uint objectID;
|
|
|
|
public EvtPropObjectCreated(uint ownerID, uint objectID)
|
|
: base(ownerID)
|
|
{
|
|
this.objectID = objectID;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("{0} created {1}", GetDebugName(targetID), GetDebugName(objectID));
|
|
}
|
|
}
|
|
}
|