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

15 lines
238 B
C#

using System;
namespace Decal.Adapter;
public class ContainerOpenedEventArgs : EventArgs
{
private int myItemGUID;
public int ItemGuid => myItemGUID;
internal ContainerOpenedEventArgs(int itemGUID)
{
myItemGUID = itemGUID;
}
}