1
0
Fork 0
mirror of https://github.com/Luzifer/sii.git synced 2024-10-18 13:24:20 +00:00
sii/cmd/sii-editor/paths_windows.go
Knut Ahlers ab39609f45
Implement Save-Game Editor (#1)
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2019-12-28 13:06:28 +00:00

15 lines
533 B
Go

package main
var userConfigPath = `~\documents\sii-editor\config.yml`
var profilePaths = map[string]string{
// Windows default for non-Steam-profiles
pathATS: `~\documents\American Truck Simulator\profiles`,
pathETS2: `~\documents\Euro Truck Simulator 2\profiles`,
}
var gamePaths = map[string]string{
// Windows default installation path for Steam games
pathATS: `C:\Program Files (x86)\Steam\steamapps\common\American Truck Simulator`,
pathETS2: `C:\Program Files (x86)\Steam\steamapps\common\Euro Truck Simulator 2`,
}