19 lines
274 B
C++
19 lines
274 B
C++
#ifndef LEVELGENERATOR
|
|
#define LEVELGENERATOR
|
|
#include "FastNoiseLite.h"
|
|
|
|
class LevelGenerator
|
|
{
|
|
public:
|
|
LevelGenerator();
|
|
void generateBlock();
|
|
|
|
protected:
|
|
|
|
private:
|
|
FastNoiseLite perlin, os, cellular;
|
|
int seed = 138;
|
|
};
|
|
|
|
#endif
|