Added 3D engine

Former-commit-id: 2e1ea34ac98e25cb27fed050b46b68de4d2d8131
This commit is contained in:
Lynix
2012-11-24 18:34:49 +01:00
parent da2963e1c1
commit d3c027e29c
6 changed files with 176 additions and 0 deletions

29
include/Nazara/3D/3D.hpp Normal file
View File

@@ -0,0 +1,29 @@
// Copyright (C) 2012 Jérôme Leclercq
// This file is part of the "Nazara Engine - 3D Module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#pragma once
#ifndef NAZARA_3D_HPP
#define NAZARA_3D_HPP
#include <Nazara/Prerequesites.hpp>
#include <Nazara/Core/Initializer.hpp>
class Nz3D
{
public:
Nz3D() = delete;
~Nz3D() = delete;
static bool Initialize();
static bool IsInitialized();
static void Uninitialize();
private:
static unsigned int s_moduleReferenceCouter;
};
#endif // NAZARA_3D_HPP