XtreemNodes/include/LevelGenerator.h

19 lines
274 B
C
Raw Normal View History

2022-12-27 02:50:14 +01:00
#ifndef LEVELGENERATOR
#define LEVELGENERATOR
#include "FastNoiseLite.h"
class LevelGenerator
{
public:
LevelGenerator();
void generateBlock();
protected:
private:
FastNoiseLite perlin, os, cellular;
int seed = 138;
};
#endif