From 106fb6de1cf3523c10197dc8e02ec44e94523f18 Mon Sep 17 00:00:00 2001 From: haranp Date: Tue, 1 May 2007 14:47:53 +0000 Subject: Type safety, cast cleanups, etc. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1401 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/cloud.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/cloud.h') 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); -- cgit v1.2.3-54-g00ecf