aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/utils
diff options
context:
space:
mode:
Diffstat (limited to 'src-vue/src/utils')
-rw-r--r--src-vue/src/utils/InstallType.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src-vue/src/utils/InstallType.ts b/src-vue/src/utils/InstallType.ts
new file mode 100644
index 00000000..4e992ab2
--- /dev/null
+++ b/src-vue/src/utils/InstallType.ts
@@ -0,0 +1,7 @@
+// Enumerates the way Titanfall2 could be installed (Steam/Origin/EA-Desktop)
+export enum InstallType {
+ STEAM = 'STEAM',
+ ORIGIN = 'ORIGIN',
+ EAPLAY = 'EAPLAY',
+ UNKNOWN = 'UNKNOWN', // used when the install location was manually selected
+}