4jcraft/targets/minecraft/client/model/SignModel.h
2026-04-01 13:27:58 -05:00

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);
};