refactor tear properties into Player

This commit is contained in:
2025-12-01 12:41:07 -05:00
parent ee5cb71560
commit 6a6249798e
3 changed files with 50 additions and 53 deletions

4
rng.h
View File

@@ -6,8 +6,8 @@
#include <random>
struct Rng {
static std::random_device dev;
static std::mt19937 rng;
inline static std::random_device dev;
inline static std::mt19937 rng{dev()};
static float generate();