Skip to content

Commit

Permalink
fix: character enum
Browse files Browse the repository at this point in the history
  • Loading branch information
kyeahxx19 committed Nov 19, 2023
1 parent e9a76fd commit 4c0f452
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/common/const/mask.const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,6 @@ export const CharacterMask = {
Blunt: 0b001000000000,
Extroverted: 0b010000000000,
Introverted: 0b100000000000,
Friendly: 0b1000000000000,
Emotional: 0b10000000000000,
};
2 changes: 2 additions & 0 deletions src/common/enums/character.enum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@ export enum Character {
Blunt = '무뚝뚝한',
Extroverted = '외향적인',
Introverted = '내향적인',
Friendly = '상냥한',
Emotional = '감성적인',
}

0 comments on commit 4c0f452

Please sign in to comment.