LunaHook-mirror/LunaHook/enginecollection64.cpp
恍兮惚兮 a184ebae85 sync
2024-03-15 16:08:16 +08:00

43 lines
991 B
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"
std::vector<ENGINE*> ignore_engines(){ return{ }; }
std::vector<ENGINE*> unsafe_check_atlast(){ return{ }; }
std::vector<ENGINE*> check_engines(){
return {
new PPSSPP,
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
};
}