Skip to content

Commit

Permalink
KOTOR: Add ability enum
Browse files Browse the repository at this point in the history
  • Loading branch information
Nostritius authored and DrMcCoy committed Jan 20, 2019
1 parent 6768c88 commit 1b1c31b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/engines/kotor/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,15 @@ enum Skill {
kSkillMAX
};

enum Ability {
kAbilityStrength = 0,
kAbilityDexterity,
kAbilityConstitution,
kAbilityIntelligence,
kAbilityWisdom,
kAbilityCharisma
};

enum EquipmentSlot {
kEquipmentSlotNone = 0,
kEquipmentSlotHead = 1U << 0,
Expand Down

0 comments on commit 1b1c31b

Please sign in to comment.