mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-01 06:10:00 +01:00
10 lines
146 B
C++
10 lines
146 B
C++
|
|
#include "stdafx.h"
|
||
|
|
#include "events.h"
|
||
|
|
|
||
|
|
namespace rpcs3
|
||
|
|
{
|
||
|
|
event<void> oninit;
|
||
|
|
event<void> onstart;
|
||
|
|
event<void> onstop;
|
||
|
|
event<void> onpause;
|
||
|
|
}
|