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

19 lines
280 B
C#

namespace Decal.Adapter;
public class ListSelectEventArgs : ControlEventArgs
{
private int row;
private int col;
public int Row => row;
public int Column => col;
internal ListSelectEventArgs(int ID, int Row, int Column)
: base(ID)
{
row = Row;
col = Column;
}
}