rpcsx/rpcs3/Emu/events.cpp

11 lines
147 B
C++
Raw Normal View History

#include "stdafx.h"
#include "events.h"
namespace rpcs3
{
event<void> oninit;
event<void> onstart;
event<void> onstop;
event<void> onpause;
2016-01-06 00:52:48 +01:00
}