LunaHook-mirror/LunaHook/engine32/Sprite.h
恍兮惚兮 6ff92740b7 TextXtra
2024-09-09 21:46:53 +08:00

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();
};