4jcraft/targets/minecraft/client/model/ChestModel.h
2026-04-01 13:27:58 -05:00

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);
};