2024-02-07 20:59:24 +08:00
|
|
|
#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"
|
2024-03-15 16:08:16 +08:00
|
|
|
#include"engine64/lucasystem.h"
|
2024-02-07 20:59:24 +08:00
|
|
|
#include"engine64/ENTERGRAM.h"
|
|
|
|
#include"engine64/TYPEMOON.h"
|
|
|
|
#include"engine64/LightVN.h"
|
2024-03-21 17:57:04 +08:00
|
|
|
#include"engine64/yuzusuyu.h"
|
2024-04-07 14:18:39 +08:00
|
|
|
#include"engine64/vita3k.h"
|
2024-04-07 18:35:50 +08:00
|
|
|
#include"engine64/rpcs3.h"
|
2024-02-07 20:59:24 +08:00
|
|
|
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,
|
2024-03-15 16:08:16 +08:00
|
|
|
new lucasystem,
|
2024-02-07 20:59:24 +08:00
|
|
|
new LightVN,
|
|
|
|
new CMVS,
|
|
|
|
new Suika2,
|
|
|
|
new AGES7,
|
|
|
|
new _5pb,
|
|
|
|
new TYPEMOON,
|
2024-03-21 17:57:04 +08:00
|
|
|
new ENTERGRAM,
|
2024-03-22 01:30:52 +08:00
|
|
|
new yuzusuyu,
|
2024-05-06 23:30:27 +08:00
|
|
|
new PPSSPPengine,
|
2024-04-07 18:35:50 +08:00
|
|
|
new vita3k,
|
|
|
|
new rpcs3
|
2024-02-07 20:59:24 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|