mirror of
https://github.com/pret/pmd-sky.git
synced 2026-03-21 17:25:15 -05:00
12 lines
640 B
C
12 lines
640 B
C
#ifndef PMDSKY_STORY_PROGRESS_H
|
|
#define PMDSKY_STORY_PROGRESS_H
|
|
|
|
void UpdateProgress(enum script_var_id script_var_id, s32 chapter, s32 sub_section);
|
|
bool8 IsStoryBeforePoint(enum script_var_id script_var_id, s32 chapter, s32 sub_section);
|
|
bool8 IsStoryBeforeOrAtPoint(enum script_var_id script_var_id, s32 chapter, s32 sub_section);
|
|
s32 IsStoryAtPoint(enum script_var_id script_var_id, s32 chapter, s32 sub_section);
|
|
s32 IsStoryAtOrAfterPoint(enum script_var_id script_var_id, s32 chapter, s32 sub_section);
|
|
s32 IsStoryAtOrAfterPointStrict(enum script_var_id script_var_id, s32 chapter, s32 sub_section);
|
|
|
|
#endif //PMDSKY_STORY_PROGRESS_H
|