-
-
Notifications
You must be signed in to change notification settings - Fork 540
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
256 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,38 @@ | ||
|
||
|
||
class Mink:public ENGINE{ | ||
public: | ||
Mink(){ | ||
|
||
check_by=CHECK_BY::FILE; | ||
check_by_target=L"*.at2";//Mink, sample files: voice.at2, voice.det, voice.nme | ||
class Mink : public ENGINE | ||
{ | ||
public: | ||
Mink() | ||
{ | ||
|
||
check_by = CHECK_BY::FILE; | ||
check_by_target = L"*.at2"; // Mink, sample files: voice.at2, voice.det, voice.nme | ||
}; | ||
bool attach_function(); | ||
bool attach_function(); | ||
}; | ||
|
||
class Mink2:public ENGINE{ | ||
public: | ||
Mink2(){ | ||
|
||
check_by=CHECK_BY::FILE; | ||
check_by_target=L"Scr\\*.sc"; | ||
is_engine_certain=false; | ||
class Mink2 : public ENGINE | ||
{ | ||
public: | ||
Mink2() | ||
{ | ||
|
||
check_by = CHECK_BY::FILE; | ||
check_by_target = L"Scr\\*.sc"; | ||
is_engine_certain = false; | ||
}; | ||
bool attach_function(); | ||
}; | ||
class Mink3 : public ENGINE | ||
{ | ||
public: | ||
Mink3() | ||
{ | ||
// 夜勤病棟 復刻版+ | ||
check_by = CHECK_BY::FILE_ALL; | ||
check_by_target = check_by_list{L"voice*.dat", L"tpd.dat", L"tms.dat", L"thm.dat", L"se.dat", L"scr.dat", L"rec.dat", L"bgm.dat", L"cgm.dat", L"gpd.dat", L"gpdtp.dat", L"mov.dat", L"msk.dat", L"msktp.dat", L"read.dat"}; | ||
is_engine_certain = false; | ||
}; | ||
bool attach_function(); | ||
bool attach_function(); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.