Added Lua extern library

Former-commit-id: 597a37211727803de7c8816a23154d71b8446cea
This commit is contained in:
Lynix
2013-04-12 16:51:04 +02:00
parent 645e4961d8
commit 9870a2249b
2 changed files with 29 additions and 36 deletions

View File

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