add item spawner

This commit is contained in:
2025-12-01 10:38:44 -05:00
parent 49751ea09e
commit d6dff2a539
6 changed files with 221 additions and 79 deletions

17
rng.h Normal file
View File

@@ -0,0 +1,17 @@
//
// Created by Grant Horner on 12/1/25.
//
#pragma once
#include <random>
struct Rng {
static std::random_device dev;
static std::mt19937 rng;
static float generate();
static float generate(uint32_t max);
static float generate(int min, int max);
};