22 lines
352 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include <random>
/**
*
*/
class LUCKYWORLD_API Random
{
public:
Random();
~Random();
double RandNorm(double mean, double stddev);
double UniformRand(double min, double max);
private:
double n2 = 0.0;
int n2_cached = 0;
};