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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/cloud.h b/crawl-ref/source/cloud.h
index ff64583ea9..b4e5d229bf 100644
--- a/crawl-ref/source/cloud.h
+++ b/crawl-ref/source/cloud.h
@@ -38,11 +38,11 @@ cloud_type random_smoke_type();
cloud_type cloud_type_at(const coord_def &pos);
void delete_cloud( int cloud );
-void move_cloud( int cloud, int new_x, int new_y );
+void move_cloud( int cloud, const coord_def& newpos );
-void check_place_cloud( cloud_type cl_type, int x, int y, int lifetime,
+void check_place_cloud( cloud_type cl_type, const coord_def& p, int lifetime,
kill_category whose, int spread_rate = -1 );
-void place_cloud( cloud_type cl_type, int ctarget_x, int ctarget_y,
+void place_cloud( cloud_type cl_type, const coord_def& ctarget,
int cl_range, kill_category whose, int spread_rate = -1 );
void manage_clouds(void);