aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/utils/InstallType.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src-vue/src/utils/InstallType.ts')
-rw-r--r--src-vue/src/utils/InstallType.ts8
1 files changed, 8 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..797f4077
--- /dev/null
+++ b/src-vue/src/utils/InstallType.ts
@@ -0,0 +1,8 @@
+// Enumerates the way Titanfall2 could be installed (Steam/Origin/EA-Desktop)
+// Needs to be synced with `pub enum InstallType` in /src-tauri/src/lib.rs
+export enum InstallType {
+ STEAM = 'STEAM',
+ ORIGIN = 'ORIGIN',
+ EAPLAY = 'EAPLAY',
+ UNKNOWN = 'UNKNOWN', // used when the install location was manually selected
+}