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