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

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