mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-24 06:15:35 +08:00
21 lines
349 B
C++
21 lines
349 B
C++
|
|
|
|
class Tanuki:public ENGINE{
|
|
public:
|
|
Tanuki(){
|
|
|
|
check_by=CHECK_BY::FILE;
|
|
check_by_target=L"*.tac";
|
|
};
|
|
bool attach_function();
|
|
};
|
|
|
|
class Tanuki_last:public Tanuki{
|
|
public:
|
|
Tanuki_last(){
|
|
|
|
check_by=CHECK_BY::FILE;
|
|
check_by_target=L"*.g2";
|
|
};
|
|
bool attach_function();
|
|
}; |