aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/ChestModel.h
blob: 416ccf7538bea12e8e211008b1d37cef9c38b897 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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);
};