mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
18 lines
311 B
C
18 lines
311 B
C
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
#include "CloseReason.h"
|
||
|
|
||
|
namespace Forms
|
||
|
{
|
||
|
// Provides data for the on closed event.
|
||
|
class FormClosedEventArgs
|
||
|
{
|
||
|
public:
|
||
|
FormClosedEventArgs(CloseReason Reason);
|
||
|
~FormClosedEventArgs() = default;
|
||
|
|
||
|
// Provides the reason for the form close.
|
||
|
CloseReason Reason;
|
||
|
};
|
||
|
}
|