issues/19

This commit is contained in:
恍兮惚兮 2024-04-25 00:01:45 +08:00
parent c376af3087
commit 779691b61a
2 changed files with 32 additions and 3 deletions

View File

@ -9,7 +9,7 @@ labels: enhancement
body: body:
- type: input - type: input
attributes: attributes:
label: vndb id label: vndb link/id
- type: textarea - type: textarea
attributes: attributes:
label: Game resource 游戏资源 label: Game resource 游戏资源

View File

@ -25,12 +25,41 @@
} }
} }
*/ */
//https://vndb.org/v5175
//ななちゃんといっしょ
/*
{
BLOCK "StringFileInfo"
{
BLOCK "041104b0"
{
VALUE "Comments", "Solfa Standard Novel System(Based on STUDIO SELDOM Adventure System Version 5.20/(c)AKIYAMA Kouhei)"
VALUE "CompanyName", "sol-fa-soft"
VALUE "FileDescription", "solfasys"
VALUE "FileVersion", "1, 0, 0, 0"
VALUE "InternalName", "solfasys"
VALUE "LegalCopyright", "sol-fa-soft"
VALUE "OriginalFilename", "solfasys.exe"
VALUE "ProductName", "solfasys"
VALUE "ProductVersion", "1, 0, 0, 0"
}
}
BLOCK "VarFileInfo"
{
VALUE "Translation", 0x411, 1200
}
}
*/
class solfasys:public ENGINE{ class solfasys:public ENGINE{
public: public:
solfasys(){ solfasys(){
check_by=CHECK_BY::RESOURCE_STR; check_by=CHECK_BY::CUSTOM;
check_by_target=L"Solfa Novel System"; check_by_target=[](){
return Util::SearchResourceString(L"Solfa Novel System")||Util::SearchResourceString(L"Solfa Standard Novel System");
};
is_engine_certain=false; is_engine_certain=false;
}; };
bool attach_function(); bool attach_function();