summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cloud.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-10-15 01:55:59 +0200
committerAdam Borowski <kilobyte@angband.pl>2010-10-15 01:55:59 +0200
commit555734fcd3aef4c83605d70d0456dda28b7b5ace (patch)
tree9c34fe5bc58d5f3d4c0a7622045adc7aa1d17a98 /crawl-ref/source/cloud.h
parentacf5187334f2cfb983a1a8de07d1e77f73e4283a (diff)
downloadcrawl-ref-555734fcd3aef4c83605d70d0456dda28b7b5ace.tar.gz
crawl-ref-555734fcd3aef4c83605d70d0456dda28b7b5ace.zip
Massive spacing fixes: "( spaces after parentheses )".
I did review it manually to find places where they made sense (like some tables), but for a massive sed job like this there might be places that I missed.
Diffstat (limited to 'crawl-ref/source/cloud.h')
-rw-r--r--crawl-ref/source/cloud.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/crawl-ref/source/cloud.h b/crawl-ref/source/cloud.h
index de05411d2d..ae55503e4f 100644
--- a/crawl-ref/source/cloud.h
+++ b/crawl-ref/source/cloud.h
@@ -30,33 +30,33 @@ cloud_type random_smoke_type();
cloud_type cloud_type_at(const coord_def &pos);
-void delete_cloud( int cloud );
+void delete_cloud(int cloud);
void delete_cloud_at(coord_def p);
-void move_cloud( int cloud, const coord_def& newpos );
+void move_cloud(int cloud, const coord_def& newpos);
void move_cloud_to(coord_def src, coord_def dest);
-void check_place_cloud( cloud_type cl_type, const coord_def& p, int lifetime,
+void check_place_cloud(cloud_type cl_type, const coord_def& p, int lifetime,
kill_category whose, int spread_rate = -1,
int colour = -1, std::string name = "",
std::string tile = "");
-void check_place_cloud( cloud_type cl_type, const coord_def& p, int lifetime,
+void check_place_cloud(cloud_type cl_type, const coord_def& p, int lifetime,
killer_type killer, int spread_rate = -1,
int colour = -1, std::string name = "",
std::string tile = "");
-void check_place_cloud( cloud_type cl_type, const coord_def& p, int lifetime,
+void check_place_cloud(cloud_type cl_type, const coord_def& p, int lifetime,
kill_category whose, killer_type killer,
int spread_rate = -1,
int colour = -1, std::string name = "",
std::string tile = "");
-void place_cloud( cloud_type cl_type, const coord_def& ctarget,
+void place_cloud(cloud_type cl_type, const coord_def& ctarget,
int cl_range, kill_category whose, int spread_rate = -1,
int colour = -1, std::string name = "",
std::string tile = "");
-void place_cloud( cloud_type cl_type, const coord_def& ctarget,
+void place_cloud(cloud_type cl_type, const coord_def& ctarget,
int cl_range, killer_type killer, int spread_rate = -1,
int colour = -1, std::string name = "",
std::string tile = "");
-void place_cloud( cloud_type cl_type, const coord_def& ctarget,
+void place_cloud(cloud_type cl_type, const coord_def& ctarget,
int cl_range, kill_category whose, killer_type killer,
int spread_rate = -1, int colour = -1, std::string name = "",
std::string tile = "");