2026-02-20 16:12:16 +01:00

20 lines
258 B
C

# ifndef SKILL_H
# define SKILL_H
typedef enum {
SKILL_NONE,
SKILL_PASSIF,
SKILL_MASTERY,
SKILL_ACTIF,
SKILL_LABOR,
SKILL_COMBAT,
SKILL_KNOWLEDGE,
SKILL_PROGRESSION,
SKILL_INATE,
} SKILL_TYPE;
typedef struct {
} Skill;
#endif