12 lines
272 B
C++
12 lines
272 B
C++
#pragma once
|
|
|
|
class MinecraftEventing {
|
|
public:
|
|
char filler[0x200];
|
|
|
|
static void (*MinecraftEventing_construct)(MinecraftEventing*, mcpe::string const&);
|
|
|
|
MinecraftEventing(mcpe::string const& str) {
|
|
MinecraftEventing_construct(this, str);
|
|
}
|
|
}; |