Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
405 B · 22 lines
C
at main
12345678910111213141516171819202122#pragma once
#include "Particle.h"
class Level;class Material;
class DripParticle : public Particle{private: Material *material; int stuckTime;
public: virtual eINSTANCEOF GetType() { return eTYPE_DRIPPARTICLE; }
DripParticle(Level *level, double x, double y, double z, Material *material);
virtual int getLightColor(float a); virtual float getBrightness(float a); virtual void tick();};