mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 08:25:20 +01:00
22 lines
507 B
C#
22 lines
507 B
C#
namespace MoleMole
|
|
{
|
|
public class EvtDynamicObjectCreated : BaseEvent
|
|
{
|
|
public readonly uint objectID;
|
|
|
|
public BaseMonoDynamicObject.DynamicType dynamicType;
|
|
|
|
public EvtDynamicObjectCreated(uint ownerID, uint objectID, BaseMonoDynamicObject.DynamicType dynamicType)
|
|
: base(ownerID)
|
|
{
|
|
this.objectID = objectID;
|
|
this.dynamicType = dynamicType;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("{0} created {1}", GetDebugName(targetID), GetDebugName(objectID));
|
|
}
|
|
}
|
|
}
|