mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-04 07:40:10 +01:00
12 lines
178 B
C++
12 lines
178 B
C++
#pragma once
|
|
|
|
#include <Utilities/event.h>
|
|
|
|
namespace rpcs3
|
|
{
|
|
extern event<void> oninit;
|
|
extern event<void> onstart;
|
|
extern event<void> onstop;
|
|
extern event<void> onpause;
|
|
}
|