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