the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 21 lines 721 B view raw
1#pragma once 2#include "Particle.h" 3 4// 4J Stu - This class was originally "PortalParticle" but I have split the two uses of the particle 5// Only the nether portal uses this particle 6 7class NetherPortalParticle : public Particle 8{ 9public: 10 virtual eINSTANCEOF GetType() { return eType_NETHERPORTALPARTICLE; } 11private: 12 float oSize; 13 double xStart, yStart, zStart; 14 15public: 16 NetherPortalParticle(Level *level, double x, double y, double z, double xd, double yd, double zd); 17 virtual void render(Tesselator *t, float a, float xa, float ya, float za, float xa2, float za2); 18 virtual int getLightColor(float a); // 4J - brought forward from 1.8.2 19 virtual float getBrightness(float a); 20 virtual void tick(); 21};