mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-11 08:07:15 +00:00
9 lines
94 B
TypeScript
9 lines
94 B
TypeScript
|
/**
|
||
|
* enum for the players gender
|
||
|
*/
|
||
|
export enum PlayerGender {
|
||
|
UNSET,
|
||
|
MALE,
|
||
|
FEMALE
|
||
|
}
|