mcpelauncher-1.1/mcpe/AppResourceLoader.h
2026-01-19 20:18:08 +02:00

19 lines
385 B
C++

#pragma once
#include "string.h"
#include <functional>
#include "Resource.h"
class AppResourceLoader : public ResourceLoader {
private:
char filler[0x14];
public:
static void (*AppResourceLoader_construct)(AppResourceLoader*, std::function<mcpe::string ()>);
AppResourceLoader(std::function<mcpe::string ()> f) {
AppResourceLoader_construct(this, f);
}
};