|
Revision 918, 1.0 kB
(checked in by takkaria, 5 months ago)
|
Use consistent newlines everywhere, and also set the svn:eol-style property to native on all text files.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
#ifndef INCLUDED_EFFECTS_H |
|---|
| 19 |
#define INCLUDED_EFFECTS_H |
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
typedef enum |
|---|
| 23 |
{ |
|---|
| 24 |
#define EFFECT(x, y, z) EF_##x, |
|---|
| 25 |
#include "list-effects.h" |
|---|
| 26 |
#undef EFFECT |
|---|
| 27 |
|
|---|
| 28 |
EF_MAX |
|---|
| 29 |
} effect_type; |
|---|
| 30 |
|
|---|
| 31 |
|
|---|
| 32 |
|
|---|
| 33 |
bool effect_do(effect_type effect, bool *ident, bool aware, int dir, int beam); |
|---|
| 34 |
bool effect_aim(effect_type effect); |
|---|
| 35 |
const char *effect_desc(effect_type effect); |
|---|
| 36 |
bool effect_obvious(effect_type effect); |
|---|
| 37 |
|
|---|
| 38 |
#endif |
|---|