4jcraft/Minecraft.Client/Rendering/Models/ChestModel.h
2026-03-13 17:10:10 -05:00

18 lines
236 B
C++

#pragma once
#include "Model.h"
class Cube;
class ChestModel : public Model {
public:
using Model::render;
ModelPart* lid;
ModelPart* bottom;
ModelPart* lock;
ChestModel();
void render(bool usecompiled);
};