Skip to content

Instantly share code, notes, and snippets.

View alphaAE's full-sized avatar
🦉
Cat?

alphaAE alphaAE

🦉
Cat?
View GitHub Profile
@alphaAE
alphaAE / Entity.h
Created November 7, 2015 00:12 — forked from byteandahalf/Entity.h
Entity.h for MCPE 0.13.0
#pragma once
#include <string>
#include <memory>
#include <vector>
class BlockSource;
class Level;
class Material;
class Player;
class EntityPos;
class BlockPos;
@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;