mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-18 01:05:13 +00:00
25 lines
421 B
C
25 lines
421 B
C
|
/**
|
||
|
* @file auth.h
|
||
|
* @brief Authorization for DDL.
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "ddl.h"
|
||
|
#include "types.h"
|
||
|
|
||
|
namespace nn
|
||
|
{
|
||
|
namespace nex
|
||
|
{
|
||
|
class NintendoAuthenticationDDLDeclarations : public nn::nex::DDLDeclarations
|
||
|
{
|
||
|
public:
|
||
|
virtual ~NintendoAuthenticationDDLDeclarations();
|
||
|
virtual void Init();
|
||
|
|
||
|
void Register();
|
||
|
|
||
|
};
|
||
|
};
|
||
|
};
|