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