Magic_Game/src/kiwano/core/event/Event.cpp

15 lines
143 B
C++
Raw Normal View History

2019-12-31 11:22:23 +08:00
#include <kiwano/core/event/Event.h>
namespace kiwano
{
Event::Event(EventType const& type)
: type_(type)
{
}
Event::~Event()
{
}
}