summaryrefslogtreecommitdiff
path: root/actions.h
diff options
context:
space:
mode:
authorOlivier Gayot <duskcoder@gmail.com>2015-01-11 02:02:07 +0100
committerOlivier Gayot <duskcoder@gmail.com>2015-01-11 03:01:46 +0100
commit65364d2e2f40807fdd03ade25917f728adc0ef77 (patch)
treee2d2e5d0a7e329f50009a086959b4226fe27dde7 /actions.h
parentd590bfdcdfa8799439cffa41fc74346e9923b6e7 (diff)
coding rules: stop at 78 colsrewrite
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
Diffstat (limited to 'actions.h')
-rw-r--r--actions.h24
1 files changed, 16 insertions, 8 deletions
diff --git a/actions.h b/actions.h
index e51edc7..89e7f7e 100644
--- a/actions.h
+++ b/actions.h
@@ -5,20 +5,28 @@
#include "players.h"
#include "target.h"
-void attack(SURFACES *, POSITIONS *, struct character_t *src, struct target_t *dst, void *data);
+void attack(SURFACES *, POSITIONS *, struct chr_t *src, struct target_t *,
+ void *data);
/* black magic */
-void cast_element(SURFACES *, POSITIONS *, struct character_t *src, struct target_t *dst, void *data);
-void cyanure(SURFACES *, POSITIONS *, struct character_t *src, struct target_t *dst, void *data);
+void cast_element(SURFACES *, POSITIONS *, struct chr_t *src,
+ struct target_t *dst, void *data);
+void cyanure(SURFACES *, POSITIONS *, struct chr_t *src, struct target_t *,
+ void *data);
/* white magic */
-void cast_cure(SURFACES *, POSITIONS *, struct character_t *src, struct target_t *dst, void *data);
-void esuna(SURFACES *, POSITIONS *, struct character_t *src, struct target_t *dst, void *data);
+void cast_cure(SURFACES *, POSITIONS *, struct chr_t *src, struct target_t *,
+ void *data);
+void esuna(SURFACES *, POSITIONS *, struct chr_t *src, struct target_t *,
+ void *data);
/* use */
-void use_potion(SURFACES *, POSITIONS *, struct character_t *src, struct target_t *dst, void *data);
-void use_ether(SURFACES *, POSITIONS *, struct character_t *src, struct target_t *dst, void *data);
+void use_potion(SURFACES *, POSITIONS *, struct chr_t *src, struct target_t *,
+ void *data);
+void use_ether(SURFACES *, POSITIONS *, struct chr_t *src, struct target_t *,
+ void *data);
-void defend(SURFACES *, POSITIONS *, struct character_t *src, struct target_t *dst, void *data);
+void defend(SURFACES *, POSITIONS *, struct chr_t *src, struct target_t *,
+ void *data);
#endif /* ACTIONS_H */