* Диверсионный отряд * фиксы * фиксы линтера * Спрайт терминала икаруса * фикс пинпоинтера * Доработки ДО * Фиксы удалённого управления шаттлом * Не запускать ДО если на может быть меньше 3 глав
14 lines
610 B
C#
14 lines
610 B
C#
using Content.Shared.Roles;
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
|
|
namespace Content.Server._Sunrise.AssaultOps;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class AssaultOperativeSpawnerComponent : Component
|
|
{
|
|
[DataField("rolePrototype", customTypeSerializer:typeof(PrototypeIdSerializer<AntagPrototype>), required:true)]
|
|
public string OperativeRolePrototype = default!;
|
|
|
|
[DataField("startingGearPrototype", customTypeSerializer:typeof(PrototypeIdSerializer<StartingGearPrototype>), required:true)]
|
|
public string OperativeStartingGear = default!;
|
|
}
|