13 lines
243 B
C#
13 lines
243 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
|
|
} |