mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-24 18:01:05 +00:00
9 lines
94 B
TypeScript
9 lines
94 B
TypeScript
|
/**
|
||
|
* enum for the players gender
|
||
|
*/
|
||
|
export enum PlayerGender {
|
||
|
UNSET,
|
||
|
MALE,
|
||
|
FEMALE
|
||
|
}
|