mirror of
https://github.com/GaryOderNichts/WiiUIdent.git
synced 2024-11-04 15:55:07 +01:00
17 lines
252 B
C++
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;
|
|
};
|