#pragma once #include #include namespace Kernel { class Random { public: static void initialize(); static uint32_t get_u32(); static uint64_t get_u64(); template requires (sizeof(T) == 4) static T get() { return Random::get_u32(); } template requires (sizeof(T) == 8) static T get() { return Random::get_u64(); } }; }