mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
9 lines
No EOL
182 B
C++
9 lines
No EOL
182 B
C++
#pragma once
|
|
#include <switch.h>
|
|
|
|
class RandomUtils {
|
|
public:
|
|
static u32 GetNext();
|
|
static u32 GetRandomU32(u32 max);
|
|
static u64 GetRandomU64(u64 max);
|
|
}; |