// Copyright (C) 2015 Jérôme Leclercq // This file is part of the "Nazara Engine - Core module" // For conditions of distribution and use, see copyright notice in Config.hpp #pragma once #ifndef NAZARA_ALGORITHM_CORE_HPP #define NAZARA_ALGORITHM_CORE_HPP #include #include #include template void NzHashCombine(std::size_t& seed, const T& v); template void NzUnpackTuple(F func, const std::tuple& t); #include #endif // NAZARA_ALGORITHM_CORE_HPP