r5sdk/r5dev/thirdparty/cppnet/cppkore/ColumnClickEventArgs.h
2022-05-21 19:58:09 +02:00

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