mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 12:53:37 +00:00
19 lines
281 B
C++
19 lines
281 B
C++
#pragma once
|
|
|
|
#include "minecraft/client/model/geom/Model.h"
|
|
|
|
class Cube;
|
|
class ModelPart;
|
|
|
|
class ChestModel : public Model {
|
|
public:
|
|
using Model::render;
|
|
|
|
ModelPart* lid;
|
|
ModelPart* bottom;
|
|
ModelPart* lock;
|
|
|
|
ChestModel();
|
|
void render(bool usecompiled);
|
|
};
|