10 lines
337 B
C#
10 lines
337 B
C#
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
|
|
namespace Content.Shared.Roles;
|
|
|
|
public abstract partial class AntagonistRoleComponent : Component
|
|
{
|
|
[DataField("prototype", required: true, customTypeSerializer: typeof(PrototypeIdSerializer<AntagPrototype>))]
|
|
public string? PrototypeId;
|
|
}
|