11 lines
210 B
C
11 lines
210 B
C
//
|
|
// Created by bruno on 1.6.2025.
|
|
//
|
|
|
|
#ifndef FACTORYGAME_PERLIN_H
|
|
#define FACTORYGAME_PERLIN_H
|
|
|
|
double pnoise2d(double x, double y, double persistence, int octaves, int seed);
|
|
|
|
#endif //FACTORYGAME_PERLIN_H
|