summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-project.h
blob: a57afbbd80ad12597f93324a81e8dfcd7d5f773e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 *  File:       mon-project.cc
 *  Summary:    Slow projectiles, done as monsters.
 *  Written by: Adam Borowski
 */

#ifndef MON_PROJECT_H
#define MON_PROJECT_H

#include "beam.h"

bool mons_is_projectile(monster_type mt);

bool cast_iood(actor *caster, int pow, bolt *beam);
bool iood_act(monsters &mon, bool no_trail = false);

#endif