diff options
| author | Your Name <[email protected]> | 2020-11-01 12:56:06 +0100 |
|---|---|---|
| committer | Your Name <[email protected]> | 2020-11-01 12:56:06 +0100 |
| commit | 74c5d2a42705fad1de5c4e1f240d5311b4aa5d5b (patch) | |
| tree | 5182d2224c453cc66164b1f275d1350beecd813a /include | |
| download | CPerlin-74c5d2a42705fad1de5c4e1f240d5311b4aa5d5b.tar.gz CPerlin-74c5d2a42705fad1de5c4e1f240d5311b4aa5d5b.tar.bz2 CPerlin-74c5d2a42705fad1de5c4e1f240d5311b4aa5d5b.zip | |
Diffstat (limited to 'include')
| -rw-r--r-- | include/perlin.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/perlin.h b/include/perlin.h new file mode 100644 index 0000000..b1dbb6f --- /dev/null +++ b/include/perlin.h @@ -0,0 +1,10 @@ +#ifndef _PERLIN_H_ +#define _PERLIN_H_ + +#include <stdlib.h> +#include <math.h> +#include <time.h> + +float perlin_noise(float x, float y); + +#endif |