summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cloud.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/cloud.h')
-rw-r--r--crawl-ref/source/cloud.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/crawl-ref/source/cloud.h b/crawl-ref/source/cloud.h
index 94b25834c6..e94c7d83b5 100644
--- a/crawl-ref/source/cloud.h
+++ b/crawl-ref/source/cloud.h
@@ -14,13 +14,15 @@
#include "externs.h"
+cloud_type random_smoke_type();
+
void delete_cloud( int cloud );
void move_cloud( int cloud, int new_x, int new_y );
-void check_place_cloud( int cl_type, int x, int y, int lifetime,
+void check_place_cloud( cloud_type cl_type, int x, int y, int lifetime,
kill_category whose );
-void place_cloud(int cl_type, int ctarget_x, int ctarget_y, int cl_range,
- kill_category whose);
+void place_cloud(cloud_type cl_type, int ctarget_x, int ctarget_y,
+ int cl_range, kill_category whose);
void manage_clouds(void);