mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-05-03 14:27:03 +02:00
aa80cf6451
Reverted ToastVariant back to an enum internally. Still exposed to player as just possible strings. Changed all 1-line documentation comments to actually be 1-line. Moved some because they were not providing documentation for the thing they were trying to.
14 lines
291 B
TypeScript
14 lines
291 B
TypeScript
/** Enum defining the different types of possible locations */
|
|
export enum LocationType {
|
|
Company,
|
|
Gym,
|
|
Hospital,
|
|
Slums,
|
|
Special, // This location has special options/activities (e.g. Bladeburner, Re-sleeving)
|
|
StockMarket,
|
|
TechVendor,
|
|
TravelAgency,
|
|
University,
|
|
Casino,
|
|
}
|