mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-03 04:06:09 +00:00
dc30dd33b2
* moving enums * import updates * fix tsconfig paths importing (#2184) * reverse index.ts addition --------- Co-authored-by: Devin Korb <meepdarknessmeep@gmail.com>
9 lines
94 B
TypeScript
9 lines
94 B
TypeScript
/**
|
|
* enum for the players gender
|
|
*/
|
|
export enum PlayerGender {
|
|
UNSET,
|
|
MALE,
|
|
FEMALE
|
|
}
|