Files
NazaraEngine/SDK/include/NDK/Application.hpp
Lynix d7ab29e5ef Fix and improve last PR
Former-commit-id: 16afead68e42411402dfb5a7bd957a4940b6f83a
2016-01-24 15:20:14 +01:00

25 lines
460 B
C++

// 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
#pragma once
#ifndef NDK_APPLICATION_HPP
#define NDK_APPLICATION_HPP
#include <NDK/Prerequesites.hpp>
namespace Ndk
{
class NDK_API Application
{
public:
inline Application();
inline ~Application();
};
}
#include <NDK/Application.inl>
#endif // NDK_APPLICATION_HPP