summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-project.h
blob: 3f17a9c7557ae152202104359c6fcb6878581acb (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);

#endif