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.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/crawl-ref/source/cloud.h b/crawl-ref/source/cloud.h
index e0d02d27ed..157aa1932c 100644
--- a/crawl-ref/source/cloud.h
+++ b/crawl-ref/source/cloud.h
@@ -14,6 +14,14 @@
#include "externs.h"
+enum fog_machine_type
+{
+ FM_GEYSER,
+ FM_SPREAD,
+ FM_BROWNIAN,
+ NUM_FOG_MACHINE_TYPES
+};
+
cloud_type random_smoke_type();
void delete_cloud( int cloud );
@@ -29,4 +37,7 @@ void manage_clouds(void);
bool is_opaque_cloud(unsigned char cloud_idx);
int steam_cloud_damage(const cloud_struct &cloud);
+void place_fog_machine(fog_machine_type fm_type, cloud_type cl_type,
+ int x, int y, int size, int power);
+
#endif