aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/utils/InstallType.ts
blob: 797f4077f836eaa872b9c95fe5d7f7df513d2523 (plain)
1
2
3
4
5
6
7
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
}