comparison libmlk-rpg/mlk/rpg/battle-bar-default.h @ 450:b26dd49f69ff

core: event -> mlk_event (and friends)
author David Demelier <markand@malikania.fr>
date Sat, 18 Feb 2023 13:37:11 +0100
parents 773a082f0b91
children 5729efd23286
comparison
equal deleted inserted replaced
449:f2f0e73ea9da 450:b26dd49f69ff
27 struct battle_bar; 27 struct battle_bar;
28 struct character; 28 struct character;
29 struct selection; 29 struct selection;
30 struct theme; 30 struct theme;
31 31
32 union event; 32 union mlk_event;
33 33
34 enum battle_bar_default_menu { 34 enum battle_bar_default_menu {
35 BATTLE_BAR_DEFAULT_MENU_ATTACK, 35 BATTLE_BAR_DEFAULT_MENU_ATTACK,
36 BATTLE_BAR_DEFAULT_MENU_MAGIC, 36 BATTLE_BAR_DEFAULT_MENU_MAGIC,
37 BATTLE_BAR_DEFAULT_MENU_ITEM, 37 BATTLE_BAR_DEFAULT_MENU_ITEM,
75 75
76 void 76 void
77 battle_bar_default_select(struct battle_bar_default *, struct battle *, const struct selection *); 77 battle_bar_default_select(struct battle_bar_default *, struct battle *, const struct selection *);
78 78
79 void 79 void
80 battle_bar_default_handle(struct battle_bar_default *, struct battle *, const union event *); 80 battle_bar_default_handle(struct battle_bar_default *, struct battle *, const union mlk_event *);
81 81
82 void 82 void
83 battle_bar_default_draw(const struct battle_bar_default *, const struct battle *); 83 battle_bar_default_draw(const struct battle_bar_default *, const struct battle *);
84 84
85 void 85 void