-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUserDefaults.swift
More file actions
55 lines (36 loc) · 1.85 KB
/
Copy pathUserDefaults.swift
File metadata and controls
55 lines (36 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//
// UserDefaults.swift
// SettingsLauncher
//
// Created by Tyler hostager on 1/11/18.
// Copyright © 2018 Tyler hostager. All rights reserved.
//
import Foundation
public class StringConstants {
public struct Defaults {
struct BFME2 {
struct PropertyLists {
enum Paths: String {
case wineskin = "/Applications/Battle for Middle-Earth II/Rise of the Witch King.app/Contents/Info.plist"
}
enum Values {
}
}
struct Paths {
static let plist = "/Applications/Battle for Middle-Earth/BFME2.app/Contents/Info.plist"
static let installation = "/Applications/Battle for Middle-Earth/Rise of the Witch King.app"
static let winExe = ""
}
static var plistPath = "/Applications/Battle for Middle-Earth/BFME2.app/Contents/Info.plist"
}
enum ROTWK {
static var plistPath = "/Applications/Battle for Middle-Earth/BFME2.app/Contents/Info.plist"
}
struct BFME1 {
static let winExePath = "/Applications/Battle for Middle-Earth/Battle for Middle-Earth.app/Contents/Resources/drive_c/Program Files/EA GAMES/The Battle for Middle-earth (tm)/lotrbfme.exe"
static let macAppPath = "/Applications/Battle for Middle-Earth/Battle for Middle-Earth.app"
static let plistPath = "/Applications/Battle for Middle-Earth/Battle for Middle-Earth.app/Contents/Info.plist"
}
static var kBFME1_defaultPLISTLocalPath = "/Applications/Battle for Middle-Earth/Battle for Middle-Earth.app/Contents/Info.plist"
}
}