mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2025-01-07 21:14:13 +08:00
28 lines
489 B
C
28 lines
489 B
C
|
|
||
|
|
||
|
class Sprite : public ENGINE
|
||
|
{
|
||
|
public:
|
||
|
Sprite()
|
||
|
{
|
||
|
is_engine_certain = false;
|
||
|
check_by = CHECK_BY::FILE;
|
||
|
check_by_target = L"*.cct";
|
||
|
};
|
||
|
bool attach_function();
|
||
|
};
|
||
|
class TextXtra_x32 : public ENGINE
|
||
|
{
|
||
|
|
||
|
public:
|
||
|
TextXtra_x32()
|
||
|
{
|
||
|
is_engine_certain = false;
|
||
|
check_by = CHECK_BY::CUSTOM;
|
||
|
check_by_target = []()
|
||
|
{
|
||
|
return GetModuleHandle(L"TextXtra.x32");
|
||
|
};
|
||
|
};
|
||
|
bool attach_function();
|
||
|
};
|