the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 19 lines 371 B view raw
1#pragma once 2#include "Random.h" 3 4class Math 5{ 6private: 7 static Random rand; 8 9public: 10 static double random(); 11 static __int64 round( double d ); 12 static int _max(int a, int b); 13 static float _max(float a, float b); 14 static int _min(int a, int b); 15 static float _min(float a, float b); 16 17 static float wrapDegrees(float input); 18 static double wrapDegrees(double input); 19};