the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 11 lines 269 B view raw
1#pragma once 2 3#include "Particle.h" 4 5class SuspendedParticle : public Particle 6{ 7public: 8 virtual eINSTANCEOF GetType() { return eType_SUSPENDEDPARTICLE; } 9 SuspendedParticle(Level *level, double x, double y, double z, double xa, double ya, double za); 10 void tick(); 11};