Brought in FLECS to play with, tomorrow we learn it.

This commit is contained in:
Zed A. Shaw 2024-10-05 18:15:14 -04:00
parent b8a0d9bbd1
commit a3eaf78fd3
7 changed files with 76 additions and 5 deletions

6
rand.hpp Normal file
View file

@ -0,0 +1,6 @@
#pragma once
#include <random>
namespace Random {
int rand_int(int from, int to);
}