the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 16 lines 324 B view raw
1#pragma once 2class FloatBuffer; 3 4class Lighting 5{ 6private: 7 static FloatBuffer *lb; 8 9public: 10 static void turnOff(); 11 static void turnOn(); 12 static void turnOnGui(); 13private: 14 static FloatBuffer *getBuffer(double a, double b, double c, double d); 15 static FloatBuffer *getBuffer(float a, float b, float c, float d); 16};