about summary refs log tree commit diff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/perlin.h10
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