WiiUIdent/source/system/OTP.hpp

17 lines
252 B
C++
Raw Normal View History

2023-03-30 21:40:17 +02:00
#pragma once
#include <mocha/otp.h>
class OTP
{
public:
static bool Init();
static const WiiUConsoleOTP& Get() { return cachedOTP; }
private:
OTP() = default;
virtual ~OTP() = default;
static inline WiiUConsoleOTP cachedOTP;
};