15 lines
234 B
C#
15 lines
234 B
C#
using System;
|
|
|
|
namespace Decal.Adapter;
|
|
|
|
public class ItemDestroyedEventArgs : EventArgs
|
|
{
|
|
private int myItemGUID;
|
|
|
|
public int ItemGuid => myItemGUID;
|
|
|
|
internal ItemDestroyedEventArgs(int itemGUID)
|
|
{
|
|
myItemGUID = itemGUID;
|
|
}
|
|
}
|