mirror of https://github.com/axmolengine/axmol.git
23 lines
303 B
C++
23 lines
303 B
C++
|
#include "EventContext.h"
|
||
|
#include "GObject.h"
|
||
|
|
||
|
NS_FGUI_BEGIN
|
||
|
|
||
|
EventContext::EventContext() :
|
||
|
_sender(nullptr),
|
||
|
_data(nullptr),
|
||
|
_inputEvent(nullptr),
|
||
|
_isStopped(false),
|
||
|
_defaultPrevented(false),
|
||
|
_touchCapture(0),
|
||
|
_type(0)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
EventContext::~EventContext()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
NS_FGUI_END
|