Files
reallife-gamemode/ReallifeGamemode.Client/global.d.ts
2019-07-30 19:55:28 +02:00

38 lines
706 B
TypeScript

declare interface GlobalData {
InTuning: boolean,
HideGui: boolean,
InMenu: boolean,
InChat: boolean,
LoggedIn: boolean,
InInput: boolean
}
declare interface AccountData {
regDate: string;
adminLevel: string;
faction: string;
factionRank: string;
group: string;
groupRank: string;
job: string;
paycheck: Paycheck;
}
declare interface Paycheck {
financialHelp: number;
financialInterest: number;
vehicleTaxation: number;
propertyTaxation: number;
wage: number;
amount: number;
rentalFees: number;
}
declare interface FactionRanks {
factionId: number,
ranks: FactionRank[]
}
declare interface FactionRank {
}