mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
18 lines
313 B
C++
18 lines
313 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace Forms
|
|
{
|
|
// Provides data for the cancel event.
|
|
class CancelEventArgs
|
|
{
|
|
public:
|
|
CancelEventArgs();
|
|
CancelEventArgs(bool Cancel);
|
|
~CancelEventArgs() = default;
|
|
|
|
// Gets or sets a value indicating whether the operation should be cancelled.
|
|
bool Cancel;
|
|
};
|
|
} |