This commit is contained in:
恍兮惚兮 2024-08-12 00:52:28 +08:00
parent 621fd866e6
commit 406438bb42
3 changed files with 1418 additions and 1337 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,12 +1,26 @@
class RPGMakerRGSS3:public ENGINE{
public:
RPGMakerRGSS3(){
check_by=CHECK_BY::FILE_ALL;
check_by_target=check_by_list{L"*.rgss3a",L"System/RGSS3*.dll"};
is_engine_certain=false;
class RPGMakerRGSS3 : public ENGINE
{
public:
RPGMakerRGSS3()
{
check_by = CHECK_BY::FILE_ALL;
check_by_target = check_by_list{L"*.rgss3a", L"System/RGSS3*.dll"};
is_engine_certain = false;
};
bool attach_function();
bool attach_function();
};
class RPGMakerRGSS300 : public ENGINE
{
public:
RPGMakerRGSS300()
{
check_by = CHECK_BY::FILE_ALL;
check_by_target = check_by_list{L"System/RGSS300.dll"};
is_engine_certain = false;
};
bool attach_function();
};

View File

@ -392,5 +392,6 @@ std::vector<ENGINE *> check_engines()
//
//
new DISCOVERY,
new RPGMakerRGSS300,
};
}