summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/perlin.h
diff options
context:
space:
mode:
authorBrendan Hickey <brendan@bhickey.net>2012-09-03 22:51:56 -0700
committerBrendan Hickey <brendan@bhickey.net>2012-12-30 19:06:10 -0800
commit78b2a340d67eb1800092d63e2ee9367d594effc7 (patch)
treecd3179c800afc660f25944b1efdd5e0644ed2fe6 /crawl-ref/source/perlin.h
parentb8dd3ee7e9f34633c1a9e0556dff292a9ed8f3dc (diff)
downloadcrawl-ref-78b2a340d67eb1800092d63e2ee9367d594effc7.tar.gz
crawl-ref-78b2a340d67eb1800092d63e2ee9367d594effc7.zip
Old Abyss Clone
The old abyss implemented in terms of a procedural layout. It's currently very thrashy.
Diffstat (limited to 'crawl-ref/source/perlin.h')
-rw-r--r--crawl-ref/source/perlin.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/perlin.h b/crawl-ref/source/perlin.h
index 7caeced5a5..8d95406eab 100644
--- a/crawl-ref/source/perlin.h
+++ b/crawl-ref/source/perlin.h
@@ -1,6 +1,7 @@
#ifndef PERLIN_H
#define PERLIN_H
-
+
+uint64_t hash3(int x, int y, int z);
double perlin(double x, double y, double z);
double fBM(double x, double y, double z, int octaves);