mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-29 20:37:05 +02:00
16 lines
295 B
TypeScript
16 lines
295 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,
|
|
}
|