20 lines
488 B
C++
20 lines
488 B
C++
// Copyright (C) 2022 Jérôme "Lynix" Leclercq (lynix680@gmail.com)
|
|
// 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_GRAPHICS_ALGORITHM_HPP
|
|
#define NAZARA_GRAPHICS_ALGORITHM_HPP
|
|
|
|
#include <Nazara/Prerequisites.hpp>
|
|
|
|
namespace Nz
|
|
{
|
|
inline UInt32 DistanceAsSortKey(float distance);
|
|
}
|
|
|
|
#include <Nazara/Graphics/Algorithm.inl>
|
|
|
|
#endif // NAZARA_GRAPHICS_ALGORITHM_HPP
|