Files
Chomp cf61560266 Cleaned up comments
Set properties as readonly
2025-06-29 09:33:11 +01:00

20 lines
363 B
C#

namespace SPTarkov.Server.Core.Models.Enums;
public enum ModSpawn
{
/// <summary>
/// Chosen mod should be the tpl from the default weapon template
/// </summary>
DEFAULT_MOD = 0,
/// <summary>
/// Normal behaviour
/// </summary>
SPAWN = 1,
/// <summary>
/// Item should not be chosen
/// </summary>
SKIP = 2,
}