rpcsx/rpcs3/Emu/events.cpp

10 lines
146 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;
}