35 lines
582 B
C#
35 lines
582 B
C#
namespace SPTarkov.Server.Core.Models.Enums;
|
|
|
|
public enum HideoutAreas
|
|
{
|
|
NotSet = -1,
|
|
Vents,
|
|
Security,
|
|
WaterCloset,
|
|
Stash,
|
|
Generator,
|
|
Heating,
|
|
WaterCollector,
|
|
MedStation,
|
|
Kitchen,
|
|
RestSpace,
|
|
Workbench,
|
|
IntelligenceCenter,
|
|
ShootingRange,
|
|
Library,
|
|
ScavCase,
|
|
Illumination,
|
|
PlaceOfFame,
|
|
AirFilteringUnit,
|
|
SolarPower,
|
|
BoozeGenerator,
|
|
BitcoinFarm,
|
|
ChristmasIllumination,
|
|
EmergencyWall,
|
|
Gym,
|
|
WeaponStand,
|
|
WeaponStandSecondary,
|
|
EquipmentPresetsStand,
|
|
CircleOfCultists,
|
|
}
|