pmd-sky/include/story_progress.h
2025-11-29 22:50:27 -06:00

12 lines
636 B
C

#ifndef PMDSKY_STORY_PROGRESS_H
#define PMDSKY_STORY_PROGRESS_H
void SetScenarioScriptVar(enum script_var_id script_var_id, s32 chapter, s32 subsection);
bool8 IsStoryBeforePoint(enum script_var_id script_var_id, s32 chapter, s32 subsection);
bool8 IsStoryBeforeOrAtPoint(enum script_var_id script_var_id, s32 chapter, s32 subsection);
bool8 IsStoryAtPoint(enum script_var_id script_var_id, s32 chapter, s32 subsection);
bool8 IsStoryAtOrAfterPoint(enum script_var_id script_var_id, s32 chapter, s32 subsection);
bool8 IsStoryAfterPoint(enum script_var_id script_var_id, s32 chapter, s32 subsection);
#endif //PMDSKY_STORY_PROGRESS_H