15 lines
265 B
C#
15 lines
265 B
C#
using System;
|
|
|
|
namespace Decal.Adapter.Wrappers;
|
|
|
|
public class CreateObjectEventArgs : EventArgs
|
|
{
|
|
private WorldObject myNewObject;
|
|
|
|
public WorldObject New => myNewObject;
|
|
|
|
internal CreateObjectEventArgs(WorldObject newObject)
|
|
{
|
|
myNewObject = newObject;
|
|
}
|
|
}
|