(NDK) Added Application class
Let's try something Former-commit-id: ebace85e2b050b1fbb994a61a644b60b85cc5a30
This commit is contained in:
25
SDK/include/NDK/Application.inl
Normal file
25
SDK/include/NDK/Application.inl
Normal file
@@ -0,0 +1,25 @@
|
||||
// Copyright (C) 2015 Jérôme Leclercq
|
||||
// This file is part of the "Nazara Development Kit"
|
||||
// For conditions of distribution and use, see copyright notice in Prerequesites.hpp
|
||||
|
||||
#include <Nazara/Core/ErrorFlags.hpp>
|
||||
#include <NDK/Sdk.hpp>
|
||||
|
||||
namespace Ndk
|
||||
{
|
||||
inline Application::Application()
|
||||
{
|
||||
NzErrorFlags errFlags(nzErrorFlag_ThrowException, true);
|
||||
|
||||
// Initialisation du SDK
|
||||
Sdk::Initialize();
|
||||
}
|
||||
|
||||
inline Application::~Application()
|
||||
{
|
||||
// Libération du SDK
|
||||
Sdk::Uninitialize();
|
||||
|
||||
// Libération automatique des modules
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user