Files
GabsPuNs-Project_Zenith_Main/Minecraft.Client/ExperienceOrbRenderer.h
2026-05-14 19:16:33 -04:00

16 lines
410 B
C++

#pragma once
#include "EntityRenderer.h"
class ExperienceOrbRenderer : public EntityRenderer
{
private:
static ResourceLocation XP_ORB_LOCATION;
public:
ExperienceOrbRenderer();
virtual void render(shared_ptr<Entity> _orb, double x, double y, double z, float rot, float a);
void blit(int x, int y, int sx, int sy, int w, int h);
virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> mob);
};