MosswartMassacre/Unused/Decal.Adapter/ItemDestroyedEventArgs.cs
2025-06-09 02:03:11 +02:00

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;
}
}