summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/rng.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/rng.h')
-rw-r--r--crawl-ref/source/rng.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/crawl-ref/source/rng.h b/crawl-ref/source/rng.h
new file mode 100644
index 0000000000..0f8bf4b7f6
--- /dev/null
+++ b/crawl-ref/source/rng.h
@@ -0,0 +1,14 @@
+#ifndef RNG_H
+#define RNG_H
+
+void seed_rng();
+void seed_rng(long seed);
+void push_rng_state();
+void pop_rng_state();
+
+void cf_setseed();
+
+unsigned long random_int();
+
+#endif
+