mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-25 03:24:51 +00:00
chore: format Minecraft.World
This commit is contained in:
@@ -1,19 +1,18 @@
|
||||
#pragma once
|
||||
#include "Random.h"
|
||||
|
||||
class Math
|
||||
{
|
||||
class Math {
|
||||
private:
|
||||
static Random rand;
|
||||
static Random rand;
|
||||
|
||||
public:
|
||||
static double random();
|
||||
static __int64 round( double d );
|
||||
static int _max(int a, int b);
|
||||
static float _max(float a, float b);
|
||||
static int _min(int a, int b);
|
||||
static float _min(float a, float b);
|
||||
static double random();
|
||||
static __int64 round(double d);
|
||||
static int _max(int a, int b);
|
||||
static float _max(float a, float b);
|
||||
static int _min(int a, int b);
|
||||
static float _min(float a, float b);
|
||||
|
||||
static float wrapDegrees(float input);
|
||||
static double wrapDegrees(double input);
|
||||
static float wrapDegrees(float input);
|
||||
static double wrapDegrees(double input);
|
||||
};
|
||||
Reference in New Issue
Block a user