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

16 lines
212 B
C++

#include "stdafx.h"
#include "CancelEventArgs.h"
namespace Forms
{
CancelEventArgs::CancelEventArgs()
: CancelEventArgs(false)
{
}
CancelEventArgs::CancelEventArgs(bool Cancel)
: Cancel(Cancel)
{
}
}