mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-27 07:44:02 +08:00
rgss300
This commit is contained in:
parent
621fd866e6
commit
406438bb42
File diff suppressed because it is too large
Load Diff
@ -1,12 +1,26 @@
|
||||
|
||||
|
||||
class RPGMakerRGSS3:public ENGINE{
|
||||
public:
|
||||
RPGMakerRGSS3(){
|
||||
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;
|
||||
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();
|
||||
};
|
@ -392,5 +392,6 @@ std::vector<ENGINE *> check_engines()
|
||||
//
|
||||
//
|
||||
new DISCOVERY,
|
||||
new RPGMakerRGSS300,
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user