summaryrefslogtreecommitdiff
path: root/actions.h
diff options
context:
space:
mode:
Diffstat (limited to 'actions.h')
-rw-r--r--actions.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/actions.h b/actions.h
index 77d9781..e51edc7 100644
--- a/actions.h
+++ b/actions.h
@@ -6,11 +6,19 @@
#include "target.h"
void attack(SURFACES *, POSITIONS *, struct character_t *src, struct target_t *dst, 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);
+
+/* 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);
+
+/* 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 defend(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);
#endif /* ACTIONS_H */