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;
6
7class EchantmentTableParticle : public Particle
8{
9private:
10 float oSize;
11 double xStart, yStart, zStart;
12
13public:
14 virtual eINSTANCEOF GetType() { return eTYPE_ENCHANTMENTTABLEPARTICLE; }
15
16 EchantmentTableParticle(Level *level, double x, double y, double z, double xd, double yd, double zd);
17
18 virtual int getLightColor(float a);
19 virtual float getBrightness(float a);
20 virtual void tick();
21};