Files
yuzu/src/core/hle/service/spl/csrng.h
David Marcec 35795a042c style: C++20 module keyword fixup
With C++20, "module" is now considered a keyword, this PR removes mentions of the word "module".
2020-09-20 16:33:47 +10:00

18 lines
380 B
C++

// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "core/hle/service/spl/module.h"
namespace Service::SPL {
class CSRNG final : public Module::Interface {
public:
explicit CSRNG(std::shared_ptr<Module> interface_module);
~CSRNG() override;
};
} // namespace Service::SPL