Fixed typo + minor errors

This commit is contained in:
Remi Beges
2012-06-10 10:27:51 +02:00
parent 879a33878e
commit 23bb9da0bd
16 changed files with 38 additions and 56 deletions

View File

@@ -4,8 +4,8 @@
#pragma once
#ifndef NOISEBASE_H
#define NOISEBASE_H
#ifndef NOISEBASE_HPP
#define NOISEBASE_HPP
#include <Nazara/Prerequesites.hpp>
@@ -13,7 +13,7 @@ class NAZARA_API NzNoiseBase
{
public:
NzNoiseBase(int seed = 0);
virtual ~NzNoiseBase();
~NzNoiseBase() = default;
void SetNewSeed(int seed);
int GetUniformRandomValue();
@@ -30,4 +30,4 @@ class NAZARA_API NzNoiseBase
};
#endif // NOISEBASE_H
#endif // NOISEBASE_HPP