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

15 lines
180 B
C#

using System;
namespace Decal.Adapter;
public class ControlEventArgs : EventArgs
{
private int id;
public int Id => id;
internal ControlEventArgs(int ID)
{
id = ID;
}
}