Files
SPT-Server-Build/Libraries/Core/Models/Enums/ModSpawn.cs
T
2025-02-07 19:36:17 +00:00

20 lines
280 B
C#

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