mcpelauncher-1.1/mcpe/AppPlatform.h
2026-01-16 23:23:28 +02:00

27 lines
556 B
C++

#pragma once
class AppPlatform {
public:
static void** myVtable;
static void (*AppPlatform_construct)(AppPlatform*);
static void (*AppPlatform_initialize)(AppPlatform*);
static void (*AppPlatform__fireAppFocusGained)(AppPlatform*);
void** vtable;
char filler [0x1000];
AppPlatform() {
AppPlatform_construct(this);
}
static AppPlatform** _singleton;
void _fireAppFocusGained() {
AppPlatform__fireAppFocusGained(this);
}
void initialize() {
AppPlatform_initialize(this);
}
};