Expose makeProducts on NSDivision interface

This commit is contained in:
David Grinberg
2022-04-27 00:48:22 -04:00
parent 9c805dabb8
commit d7ac7f8399
2 changed files with 4 additions and 0 deletions

View File

@@ -7202,6 +7202,8 @@ interface Division {
cities: string[];
/** Products developed by this division */
products: string[];
/** Whether the industry this division is in is capable of making products */
makesProducts: boolean;
}
/**