/* AUTHOR: LAUREN DULICK DATE: APRIL 2023 - MAY 2023 TITLE: MINESWEEPER */ // RANDOM_NUM_GEN.H #pragma once #include class Random_Num_Gen { static std::mt19937 randomNum; public: static int IntegerNum(int intMin, int intMax); static float FloatNum(float floatMin, float floatMax); };