Office Size Upgrade Cost

This commit is contained in:
pigalot
2022-01-15 14:24:01 +00:00
parent 2246dd7fe6
commit d34d720ab9
4 changed files with 52 additions and 0 deletions

View File

@@ -6175,6 +6175,14 @@ export interface OfficeAPI {
* @returns A promise that is fulfilled when the assignment is complete.
*/
setAutoJobAssignment(divisionName: string, cityName: string, job: string, amount: number): Promise<boolean>;
/**
* Cost to Upgrade office size.
* @param divisionName - Name of the division
* @param cityName - Name of the city
* @param size - Amount of positions to open
* @returns Cost of upgrading the office
*/
getOfficeSizeUpgradeCost(divisionName: string, cityName: string, asize: number): number;
}
/**