#ifndef SKILLPOINTS_H
#define SKILLPOINTS_H
// this function should be called when the MUD first boots up.
// calling it will initialize the module for use.

int charGetSkillpoints(CHAR_DATA *ch);
void charSetSkillpoints(CHAR_DATA *ch, int new_skillpoints);

void init_skillpoints(void);

#endif //SKILLPOINTS_H