mcpip changes

This commit is contained in:
h4570
2022-08-03 18:35:00 +02:00
parent 0a024e745f
commit 82e5e87822
8 changed files with 51 additions and 38 deletions
@@ -19,12 +19,16 @@ namespace Tyra {
class McpipBlock {
public:
McpipBlock() {}
McpipBlock() {
model = nullptr;
color = nullptr;
textureOffset = nullptr;
}
~McpipBlock() {}
M4x4 model;
Color color;
Vec4 textureOffset;
M4x4* model;
Color* color;
Vec4* textureOffset;
};
} // namespace Tyra