Move Job Infos Interaktionsmenü in eigenes Menü

This commit is contained in:
VegaZ
2021-04-08 00:20:52 +02:00
parent 629cc35e00
commit a2d6039736
3 changed files with 86 additions and 9 deletions

View File

@@ -14,7 +14,6 @@ declare type AccountData = {
factionRank: string;
group: string;
groupRank: string;
job: string;
paycheck: Paycheck;
licenses: Licenses;
vehicles: VehicleData[];
@@ -25,6 +24,13 @@ declare type AccountData = {
userWarn: number;
}
declare type JobData = {
job: string;
busskill: number;
pilotskill: number;
wage: number;
}
declare type VehicleData = {
Id: number;
Model: number;
@@ -44,6 +50,8 @@ declare type Paycheck = {
otheramount: number;
}
declare type Licenses = {
drivingLicenseCar: boolean;
drivingLicenseBike: boolean;