mirror of https://github.com/zeldaret/botw.git
20 lines
360 B
C++
20 lines
360 B
C++
/**
|
|
* @file auth.h
|
|
* @brief Authorization for DDL.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <nn/nex/ddl.h>
|
|
|
|
namespace nn {
|
|
namespace nex {
|
|
class NintendoAuthenticationDDLDeclarations : public nn::nex::DDLDeclarations {
|
|
public:
|
|
virtual ~NintendoAuthenticationDDLDeclarations();
|
|
virtual void Init();
|
|
|
|
void Register();
|
|
};
|
|
}; // namespace nex
|
|
}; // namespace nn
|