mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-23 22:05:36 +08:00
43 lines
975 B
C++
43 lines
975 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/IG.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 IG,
|
|
new LightVN,
|
|
new CMVS,
|
|
new Suika2,
|
|
new AGES7,
|
|
new _5pb,
|
|
new TYPEMOON,
|
|
new ENTERGRAM
|
|
};
|
|
|
|
}
|