Former-commit-id: 89d82ac533c72033927557251278dd1544002a54 [formerly dc3b1ff5e00608ed0dfdee9b57ff6986a1d5ac33] Former-commit-id: ee2b46fbfb0a0f7cd96ae1b35ec1af30342cd2fb
22 lines
429 B
C++
22 lines
429 B
C++
// Copyright (C) 2015 Jérôme Leclercq
|
|
// This file is part of the "Nazara Engine - Graphics module"
|
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
|
|
|
#pragma once
|
|
|
|
#ifndef NAZARA_LOADERS_OBJ_HPP
|
|
#define NAZARA_LOADERS_OBJ_HPP
|
|
|
|
#include <Nazara/Prerequesites.hpp>
|
|
|
|
namespace Nz
|
|
{
|
|
namespace Loaders
|
|
{
|
|
void RegisterOBJLoader();
|
|
void UnregisterOBJLoader();
|
|
}
|
|
}
|
|
|
|
#endif // NAZARA_LOADERS_OBJ_HPP
|