// Copyright (C) 2012 Rémi Bèges // This file is part of the "Nazara Engine". // For conditions of distribution and use, see copyright notice in Config.hpp #pragma once #ifndef NAZARA_ABSTRACT4DNOISE_HPP #define NAZARA_ABSTRACT4DNOISE_HPP #include #include template class NzAbstract4DNoise : public NzMappedNoiseBase { public: virtual T GetBasicValue(T x, T y, T z, T w); virtual T GetMappedValue(T x, T y, T z, T w); virtual T GetValue(T x, T y, T z, T w, T resolution) = 0; }; #include #endif // NAZARA_ABSTRACT4DNOISE_HPP