Adds linting support to SoundCollectionPrototype, fix linter errors.
Closes #4580
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
using System.Collections.Generic;
|
||||
using Robust.Shared.Prototypes;
|
||||
using Robust.Shared.Serialization.Manager.Attributes;
|
||||
using Robust.Shared.Utility;
|
||||
using Robust.Shared.ViewVariables;
|
||||
|
||||
namespace Content.Shared.Audio
|
||||
@@ -12,6 +13,7 @@ namespace Content.Shared.Audio
|
||||
[DataField("id", required: true)]
|
||||
public string ID { get; } = default!;
|
||||
|
||||
[DataField("files")] public List<string> PickFiles { get; } = new();
|
||||
[DataField("files")]
|
||||
public List<ResourcePath> PickFiles { get; } = new();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user