the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3#include "Particle.h"
4
5class PlayerCloudParticle : public Particle
6{
7private:
8 float oSize;
9
10public:
11 virtual eINSTANCEOF GetType() { return eType_PLAYERCLOUDPARTICLEPARTICLE; }
12 PlayerCloudParticle(Level *level, double x, double y, double z, double xa, double ya, double za);
13 void render(Tesselator *t, float a, float xa, float ya, float za, float xa2, float za2);
14 void tick();
15};