mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 06:03:37 +00:00
16 lines
212 B
C++
16 lines
212 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);
|
|
};
|