comparison libmlk-rpg/mlk/rpg/spell.h @ 462:5729efd23286

core: core -> mlk_core
author David Demelier <markand@malikania.fr>
date Mon, 27 Feb 2023 09:52:55 +0100
parents 773a082f0b91
children
comparison
equal deleted inserted replaced
461:d7874f11565f 462:5729efd23286
49 void (*select)(const struct battle *, struct selection *); 49 void (*select)(const struct battle *, struct selection *);
50 void (*action)(struct battle *, struct character *, const struct selection *); 50 void (*action)(struct battle *, struct character *, const struct selection *);
51 void (*use)(struct character *, const struct selection *); 51 void (*use)(struct character *, const struct selection *);
52 }; 52 };
53 53
54 CORE_BEGIN_DECLS 54 MLK_CORE_BEGIN_DECLS
55 55
56 void 56 void
57 spell_select(const struct spell *, const struct battle *, struct selection *); 57 spell_select(const struct spell *, const struct battle *, struct selection *);
58 58
59 void 59 void
60 spell_action(const struct spell *, struct battle *, struct character *, const struct selection *); 60 spell_action(const struct spell *, struct battle *, struct character *, const struct selection *);
61 61
62 void 62 void
63 spell_use(struct spell *, struct character *, const struct selection *); 63 spell_use(struct spell *, struct character *, const struct selection *);
64 64
65 CORE_END_DECLS 65 MLK_CORE_END_DECLS
66 66
67 #endif /* !MLK_RPG_SPELL_H */ 67 #endif /* !MLK_RPG_SPELL_H */