k_system_control.h 377 B

12345678910111213141516171819
  1. // Copyright 2021 yuzu Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include "common/common_types.h"
  6. namespace Kernel {
  7. class KSystemControl {
  8. public:
  9. KSystemControl() = default;
  10. static u64 GenerateRandomRange(u64 min, u64 max);
  11. static u64 GenerateRandomU64();
  12. };
  13. } // namespace Kernel