mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 15:43:38 +00:00
17 lines
257 B
C++
17 lines
257 B
C++
#pragma once
|
|
|
|
#include "minecraft/client/model/geom/Model.h"
|
|
|
|
class Cube;
|
|
class ModelPart;
|
|
|
|
class SignModel : public Model {
|
|
public:
|
|
using Model::render;
|
|
ModelPart* cube;
|
|
ModelPart* cube2;
|
|
|
|
SignModel();
|
|
void render(bool usecompiled);
|
|
};
|