prepare events for achievements

This commit is contained in:
Ondřej Novák 2025-04-17 11:54:03 +02:00
parent 0550d584e6
commit f5450c0f92
9 changed files with 101 additions and 20 deletions

17
game/ach_events.h Normal file
View file

@ -0,0 +1,17 @@
#ifndef SKELDAL_ACH_EVENTS_
#define SKELDAL_ACH_EVENTS_
typedef struct thuman THUMAN;
void ach_event_kill_monster(int id);
void ach_event_pick_item(int id);
void ach_event_end_game();
void ach_event_inv_add(int id);
void ach_event_dialog_paragraph(int pgf);
void ach_event_full_party();
void enable_achievements(char enable);
#endif