diff options
Diffstat (limited to 'src/gui/skill.h')
-rw-r--r-- | src/gui/skill.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/gui/skill.h b/src/gui/skill.h index 601f9ef5..6ba70ec1 100644 --- a/src/gui/skill.h +++ b/src/gui/skill.h @@ -35,6 +35,18 @@ //DIALOG skill_dialog[]; +extern int n_skills; + +struct SKILL { + short id, lv, sp; + SKILL *next; +}; + + void update_skill_dialog(); +void add_skill(short id, short lv, short sp); +char *skill_list(int index, int *list_size); +int get_skill_id(int index); +SKILL *is_skill(int id); void increaseStatus(void *dp3, int d1); #endif |