readd diverged version
This commit is contained in:
21
include/LevelGenerator.h
Normal file
21
include/LevelGenerator.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef LEVELGENERATOR
|
||||
#define LEVELGENERATOR
|
||||
#include "FastNoiseLite.h"
|
||||
|
||||
class LevelGenerator
|
||||
{
|
||||
public:
|
||||
LevelGenerator();
|
||||
void setSeed();
|
||||
void generateBlock();
|
||||
void terraformBlock();
|
||||
void populate();
|
||||
|
||||
protected:
|
||||
|
||||
private:
|
||||
FastNoiseLite perlin, os, cellular;
|
||||
int seed = 138; // 1338, 1337. 138 are good ones
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user