mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
17 lines
293 B
C
17 lines
293 B
C
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace Forms
|
||
|
{
|
||
|
// Provides data for the OnColumnClick event.
|
||
|
class ColumnClickEventArgs
|
||
|
{
|
||
|
public:
|
||
|
ColumnClickEventArgs(int32_t Column);
|
||
|
~ColumnClickEventArgs() = default;
|
||
|
|
||
|
// The index of the column that was clicked.
|
||
|
const int32_t Column;
|
||
|
};
|
||
|
}
|