You've already forked mp1r-practice-mod
mirror of
https://github.com/CraftyBoss/mp1r-practice-mod.git
synced 2026-04-01 08:50:23 -07:00
15 lines
249 B
C++
15 lines
249 B
C++
#include "random.hpp"
|
|
|
|
#include <random>
|
|
|
|
namespace exl::util {
|
|
|
|
u64 GetRandomU64() {
|
|
std::mt19937_64 random { svcGetSystemTick() };
|
|
return random();
|
|
}
|
|
|
|
extern "C" u64 exl_random() {
|
|
return GetRandomU64();
|
|
}
|
|
} |