mirror of
https://github.com/bnowakow/GT7-Scripts.git
synced 2026-01-08 04:11:56 +00:00
21 lines
206 B
AutoHotkey
21 lines
206 B
AutoHotkey
#Include Races\PanAm.ahk
|
|
#Include Races\Tokyo.ahk
|
|
|
|
GoTo EndRaceDef
|
|
|
|
Race:
|
|
|
|
Switch RaceChoice
|
|
{
|
|
case "PanAm":
|
|
Race_PANAM()
|
|
return
|
|
case "Tokyo":
|
|
Race_Tokyo()
|
|
return
|
|
}
|
|
|
|
return
|
|
|
|
EndRaceDef:
|