mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-22 18:38:12 +05:00
17 lines
210 B
C++
17 lines
210 B
C++
#pragma once
|
|
|
|
#include "Model.h"
|
|
|
|
class Cube;
|
|
|
|
class SignModel : public Model
|
|
{
|
|
public:
|
|
using Model::render;
|
|
ModelPart *cube;
|
|
ModelPart *cube2;
|
|
|
|
SignModel();
|
|
void render(bool usecompiled);
|
|
};
|