SectorFileUpdater/updater/src/data_structure.js

29 lines
468 B
JavaScript
Raw Normal View History

2023-01-14 01:26:26 +01:00
var systemstructure = {
path: ""
};
var structure = {
region: 0,
file: 0,
installcreds: false,
2023-01-14 01:26:26 +01:00
installhoppie: false, // Not yet implemented
2023-01-16 01:18:52 +01:00
realname: {
save: false,
name: ""
},
2023-01-14 01:26:26 +01:00
cid: {
2023-01-16 01:18:52 +01:00
save: false,
2023-01-14 01:26:26 +01:00
id: -1
},
password: {
2023-01-16 01:18:52 +01:00
save: false,
2023-01-14 01:26:26 +01:00
pass: ""
},
passwordhoppie: {
2023-01-16 01:18:52 +01:00
save: false,
2023-01-14 01:26:26 +01:00
pass: ""
},
2023-01-16 01:18:52 +01:00
rating: 0,
2023-01-14 01:26:26 +01:00
currentInstalledAirac: 0,
2023-01-16 01:18:52 +01:00
version: "1"
2023-01-14 01:26:26 +01:00
};