Last active
November 16, 2015 05:21
-
-
Save jose-vm/9477493d63682281fcd5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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