first commit
This commit is contained in:
15
Minecraft.Client/Durango/Achievements/AchievementManager.cpp
Normal file
15
Minecraft.Client/Durango/Achievements/AchievementManager.cpp
Normal file
@@ -0,0 +1,15 @@
|
||||
#include "stdafx.h"
|
||||
#include "AchievementManager.h"
|
||||
|
||||
using namespace Platform;
|
||||
using namespace Windows::Data;
|
||||
using namespace Windows::Foundation;
|
||||
using namespace Windows::Foundation::Collections;
|
||||
using namespace Windows::Xbox::System;
|
||||
using namespace Microsoft::WRL;
|
||||
using namespace Microsoft::WRL::Details;
|
||||
using namespace Microsoft::Xbox::Services;
|
||||
using namespace Microsoft::Xbox::Services::Achievements;
|
||||
|
||||
|
||||
AchievementManager *AchievementManager::m_instance = new AchievementManager(); //Singleton instance of the Achievement Manager
|
||||
@@ -0,0 +1,8 @@
|
||||
#pragma once
|
||||
|
||||
class AchievementManager
|
||||
{
|
||||
|
||||
private:
|
||||
static AchievementManager *m_instance;
|
||||
};
|
||||
Reference in New Issue
Block a user