r5sdk/r5dev/thirdparty/cppnet/cppkore/CancelEventArgs.cpp

16 lines
212 B
C++
Raw Normal View History

2022-05-21 19:58:09 +02:00
#include "stdafx.h"
#include "CancelEventArgs.h"
namespace Forms
{
CancelEventArgs::CancelEventArgs()
: CancelEventArgs(false)
{
}
CancelEventArgs::CancelEventArgs(bool Cancel)
: Cancel(Cancel)
{
}
}