Skip to content

Instantly share code, notes, and snippets.

View alphaAE's full-sized avatar
🦉
Cat?

alphaAE alphaAE

🦉
Cat?
View GitHub Profile
@alphaAE
alphaAE / Block.h
Created November 3, 2015 02:59 — forked from byteandahalf/Block.h
Block header for MCPE 0.13.0 (previously named Tile)
#pragma once
#include <string>
#include <vector>
class Material;
class BlockEntity;
class BlockPos;
class BlockSource;
class Entity;
class Player;
class Mob;
@byteandahalf
byteandahalf / Block.h
Last active February 20, 2016 06:04
Block header for MCPE 0.14.0
#pragma once
#include <string>
#include <vector>
#include "minecraftpe/client/renderer/texture/TextureUVCoordinateSet.h"
#include "minecraftpe/client/renderer/renderer/Color.h"
#include "minecraftpe/world/phys/AABB.h"
struct Material;
@jaehee0507
jaehee0507 / main.cpp
Created August 13, 2015 22:59
A source of Single Potion Addon
#include <dlfcn.h>
#include <jni.h>
#include <string>
#include <functional>
#include <vector>
#include <stdlib.h>
#include <android/log.h>
#include "mcpelauncher.h"
using namespace std;