NzNoise added

This commit is contained in:
Overdrivr
2012-05-24 20:41:08 +02:00
parent 570e0a8070
commit 341eda975c
9 changed files with 1376 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
// Copyright (C) 2012 AUTHORS
// This file is part of the "Nazara Engine".
// For conditions of distribution and use, see copyright notice in Config.hpp
#pragma once
#ifndef NAZARA_NOISE_HPP
#define NAZARA_NOISE_HPP
#include <Nazara/Prerequesites.hpp>
class NAZARA_API NzNoise
{
public:
NzNoise();
~NzNoise();
bool Initialize();
void Uninitialize();
static bool IsInitialized();
private:
static bool s_initialized;
};
#endif // NOISE_H