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 Level;
6class Material;
7
8class DripParticle : public Particle
9{
10private:
11 Material *material;
12 int stuckTime;
13
14public:
15 virtual eINSTANCEOF GetType() { return eTYPE_DRIPPARTICLE; }
16
17 DripParticle(Level *level, double x, double y, double z, Material *material);
18
19 virtual int getLightColor(float a);
20 virtual float getBrightness(float a);
21 virtual void tick();
22};