dLytMeter_c::fn_800D57B0 OK

This commit is contained in:
robojumper
2025-04-19 19:03:46 +02:00
parent 8e5c06ea13
commit 596d5820e6
23 changed files with 562 additions and 22 deletions
@@ -0,0 +1,19 @@
#ifndef D_LYT_SIMPLE_WINDOW_H
#define D_LYT_SIMPLE_WINDOW_H
class dLytSimpleWindow_c {
public:
dLytSimpleWindow_c() {}
virtual ~dLytSimpleWindow_c() {}
static dLytSimpleWindow_c *getInstance() {
return sInstance;
}
bool fn_8012B000();
private:
static dLytSimpleWindow_c *sInstance;
};
#endif