WiiUIdent/source/system/OTP.hpp

17 lines
252 B
C++

#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;
};