14 lines
189 B
C#
14 lines
189 B
C#
namespace SPTarkov.Server.Core.Models.Enums;
|
|
|
|
public enum HealthFactor
|
|
{
|
|
None,
|
|
Health,
|
|
Hydration,
|
|
Energy,
|
|
Radiation,
|
|
Temperature,
|
|
Poisoning,
|
|
Effect = 100,
|
|
}
|