mirror of
https://git.neolegacy.dev/neoStudiosLCE/neoLegacy.git
synced 2026-07-15 18:42:34 +00:00
16 lines
225 B
C++
16 lines
225 B
C++
#pragma once
|
|
#include "Model.h"
|
|
|
|
class ModelPart;
|
|
|
|
class BannerModel : public Model
|
|
{
|
|
public:
|
|
ModelPart *bannerSlate;
|
|
ModelPart *bannerStand;
|
|
ModelPart *bannerTop;
|
|
|
|
BannerModel();
|
|
void renderBanner(bool useCompiled);
|
|
};
|