about summary refs log tree commit diff
path: root/include/perlin.h
blob: b1dbb6fdf19cb344fd6160404cdf53c9f5a7c200 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#ifndef _PERLIN_H_
#define _PERLIN_H_

#include <stdlib.h>
#include <math.h>
#include <time.h>

float perlin_noise(float x, float y);

#endif