19 lines
521 B
C#
19 lines
521 B
C#
#nullable enable
|
|
using System.Collections.Generic;
|
|
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Content.Shared.Audio
|
|
{
|
|
[Prototype("soundCollection")]
|
|
public sealed class SoundCollectionPrototype : IPrototype
|
|
{
|
|
[ViewVariables]
|
|
[field: DataField("id", required: true)]
|
|
public string ID { get; } = default!;
|
|
|
|
[field: DataField("files")] public List<string> PickFiles { get; } = new();
|
|
}
|
|
}
|