mirror of
https://github.com/InoriRus/Kyty.git
synced 2026-08-28 05:06:40 +00:00
25 lines
360 B
C++
25 lines
360 B
C++
#include "Emulator/Emulator.h"
|
|
|
|
#include "Kyty/Core/Subsystems.h"
|
|
|
|
#include "Emulator/Common.h"
|
|
|
|
#ifdef KYTY_EMU_ENABLED
|
|
|
|
namespace Kyty::Emulator {
|
|
|
|
void kyty_reg();
|
|
|
|
KYTY_SUBSYSTEM_INIT(Emulator)
|
|
{
|
|
kyty_reg();
|
|
}
|
|
|
|
KYTY_SUBSYSTEM_UNEXPECTED_SHUTDOWN(Emulator) {}
|
|
|
|
KYTY_SUBSYSTEM_DESTROY(Emulator) {}
|
|
|
|
} // namespace Kyty::Emulator
|
|
|
|
#endif // KYTY_EMU_ENABLED
|