summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/throw.h
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2013-02-13 12:04:56 -0600
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2013-02-13 12:04:56 -0600
commit69feb1883c7251bc3fe5cfc6de0063efefa6b083 (patch)
treea5037eb052460a19d9244b5708735417a3a2fde8 /crawl-ref/source/throw.h
parenta91b873918fbe6adea571494cf8be3195b4d4908 (diff)
downloadcrawl-ref-69feb1883c7251bc3fe5cfc6de0063efefa6b083.tar.gz
crawl-ref-69feb1883c7251bc3fe5cfc6de0063efefa6b083.zip
Fix inconsistencies in bolt struct references.
Diffstat (limited to 'crawl-ref/source/throw.h')
-rw-r--r--crawl-ref/source/throw.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/crawl-ref/source/throw.h b/crawl-ref/source/throw.h
index 2764465f53..7bb182776d 100644
--- a/crawl-ref/source/throw.h
+++ b/crawl-ref/source/throw.h
@@ -10,8 +10,6 @@
#include "externs.h"
#include "enum.h"
-struct bolt;
-
enum fire_type
{
FIRE_NONE = 0x0000,
@@ -46,6 +44,6 @@ bool thrown_object_destroyed(item_def *item, const coord_def& where);
int launcher_final_speed(const item_def &launcher,
const item_def *shield, bool scaled = true);
-void setup_monster_throw_beam(monster* mons, struct bolt &beam);
-bool mons_throw(monster* mons, struct bolt &beam, int msl);
+void setup_monster_throw_beam(monster* mons, bolt &beam);
+bool mons_throw(monster* mons, bolt &beam, int msl);
#endif