mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
* Cleanup: Remove redundant Prototype names * Actually this one probably should stay * Suppress warning * Remove warning suppression on AudioMetadataPrototype * But wait, there's more!
19 lines
484 B
C#
19 lines
484 B
C#
using System.Collections.Generic;
|
|
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
using Robust.Shared.Utility;
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Robust.Shared.Audio;
|
|
|
|
[Prototype]
|
|
public sealed partial class SoundCollectionPrototype : IPrototype
|
|
{
|
|
[ViewVariables]
|
|
[IdDataField]
|
|
public string ID { get; private set; } = default!;
|
|
|
|
[DataField("files")]
|
|
public List<ResPath> PickFiles { get; private set; } = new();
|
|
}
|