LunaHook-mirror/LunaHook/enginecollection64.cpp
恍兮惚兮 e666cb0e1b rpcs3
1

rpcs3
2024-04-07 21:07:10 +08:00

49 lines
1.1 KiB
C++

#include"engine64/PPSSPP.h"
#include"engine64/Godot.h"
#include"engine64/V8.h"
#include"engine64/Renpy.h"
#include"engine64/mono.h"
#include"engine64/AGES7.h"
#include"engine64/pchooks.h"
#include"engine64/Artemis.h"
#include"engine64/KiriKiri.h"
#include"engine64/YOX.h"
#include"engine64/Suika2.h"
#include"engine64/CMVS.h"
#include"engine64/5pb.h"
#include"engine64/lucasystem.h"
#include"engine64/ENTERGRAM.h"
#include"engine64/TYPEMOON.h"
#include"engine64/LightVN.h"
#include"engine64/yuzusuyu.h"
#include"engine64/vita3k.h"
#include"engine64/rpcs3.h"
std::vector<ENGINE*> ignore_engines(){ return{ }; }
std::vector<ENGINE*> unsafe_check_atlast(){ return{ }; }
std::vector<ENGINE*> check_engines(){
return {
new Godot,
new V8,
new Renpy,
new mono,
new pchooks,
new Artemis,
new KiriKiri,
new YOX,
new lucasystem,
new LightVN,
new CMVS,
new Suika2,
new AGES7,
new _5pb,
new TYPEMOON,
new ENTERGRAM,
new yuzusuyu,
new PPSSPP,
new vita3k,
new rpcs3
};
}