mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-18 21:05:19 +00:00
Added new config system
Added emulator state class Added emulator events Minor improvements
This commit is contained in:
parent
bbfca3fc0d
commit
e4f6eb04e8
20 changed files with 1435 additions and 112 deletions
10
rpcs3/Emu/events.cpp
Normal file
10
rpcs3/Emu/events.cpp
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#include "stdafx.h"
|
||||
#include "events.h"
|
||||
|
||||
namespace rpcs3
|
||||
{
|
||||
event<void> oninit;
|
||||
event<void> onstart;
|
||||
event<void> onstop;
|
||||
event<void> onpause;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue