the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2#include "EntityRenderer.h"
3
4class ExperienceOrbRenderer : public EntityRenderer
5{
6private:
7 static ResourceLocation XP_ORB_LOCATION;
8
9public:
10 ExperienceOrbRenderer();
11
12 virtual void render(shared_ptr<Entity> _orb, double x, double y, double z, float rot, float a);
13 void blit(int x, int y, int sx, int sy, int w, int h);
14
15 virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> mob);
16};