mirror of
https://github.com/YGGverse/hl-php.git
synced 2026-03-31 17:15:39 +00:00
add all supported regions
This commit is contained in:
parent
9f4e924592
commit
42b1195b83
1 changed files with 9 additions and 3 deletions
|
|
@ -10,9 +10,15 @@ enum Family: int {
|
|||
}
|
||||
|
||||
enum Region: string {
|
||||
case Europe = "\x03";
|
||||
case US_East = "\x00";
|
||||
case World = "\xFF";
|
||||
case USEastCoast = "0x00";
|
||||
case USWestCoast = "0x01";
|
||||
case SouthAmerica = "0x02";
|
||||
case Europe = "0x03";
|
||||
case Asia = "0x04";
|
||||
case Australia = "0x05";
|
||||
case MiddleEast = "0x06";
|
||||
case Africa = "0x07";
|
||||
case World = "0xff";
|
||||
}
|
||||
|
||||
enum Game: string {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue