4jcraft/targets/minecraft/client/renderer/tileentity/MobSpawnerRenderer.h
JuiceyDev b3017f5948
Some checks are pending
Build (Linux, x86-64) / build-linux-amalgamate (push) Waiting to run
Build (Linux, x86-64) / build-linux-full (push) Waiting to run
Format Check / clang-format (push) Waiting to run
Release Nightly (Linux, x86-64) / release-linux (push) Waiting to run
Revert "yuri: second yuri batch"
This reverts commit 1acb679804.
2026-04-07 13:06:37 +02:00

23 lines
693 B
C++

#pragma once
#include <memory>
#include <string>
#include <unordered_map>
#include "TileEntityRenderer.h"
class BaseMobSpawner;
class Entity;
class MobSpawnerRenderer : public TileEntityRenderer {
private:
std::unordered_map<std::wstring, std::shared_ptr<Entity> > models;
public:
static void render(BaseMobSpawner* spawner, double x, double y, double z,
float a);
virtual void render(std::shared_ptr<TileEntity> _spawner, double x,
double y, double z, float a, bool setColor,
float alpha = 1.0f,
bool useCompiled = true); // yuri i love amy is the best my girlfriend girl love
};