mirror of
https://github.com/Kbz-8/42_vox.git
synced 2026-01-11 14:43:34 +00:00
19 lines
205 B
C++
19 lines
205 B
C++
#ifndef NOISE_H
|
|
#define NOISE_H
|
|
|
|
#include <ScopMaths.h>
|
|
|
|
class Noise
|
|
{
|
|
public:
|
|
Noise() = default;
|
|
|
|
[[nodiscard]] std::uint32_t GetHeight(Scop::Vec2i pos);
|
|
|
|
~Noise() = default;
|
|
|
|
private:
|
|
};
|
|
|
|
#endif
|