Skip to content

Instantly share code, notes, and snippets.

@jose-vm
Last active November 16, 2015 05:21
Show Gist options
  • Save jose-vm/9477493d63682281fcd5 to your computer and use it in GitHub Desktop.
Save jose-vm/9477493d63682281fcd5 to your computer and use it in GitHub Desktop.
#pragma once
class Material {
public:
int materialType; // 0, thanks to byteandahalf
bool isFlammable; // 4
bool isNeverBuildable; // 5, alt name: isSolidBlocking
bool isAlwaysDestroyable; // 6
bool isReplaceable; // 7
bool isLiquid; // 8
float translucency; // 12
bool blocksMotion; // 16
bool isSolid; // 17
bool isSuperHot; // 18
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment