mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 07:33:36 +00:00
18 lines
236 B
C++
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);
|
|
};
|