19 lines
385 B
C++
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);
|
|
}
|
|
|
|
}; |