Fix serv warnings (#4400)

This commit is contained in:
mirrorcult
2021-07-31 01:59:18 -07:00
committed by GitHub
parent dbc90f202a
commit f93bdcd226
6 changed files with 2 additions and 8 deletions

View File

@@ -8,13 +8,12 @@ using Robust.Shared.Utility;
namespace Content.Shared.Sound
{
[DataDefinition]
[ImplicitDataDefinitionForInheritors]
public abstract class SoundSpecifier
{
public abstract string GetSound();
}
[DataDefinition]
public sealed class SoundPathSpecifier : SoundSpecifier
{
public const string Node = "path";
@@ -42,7 +41,6 @@ namespace Content.Shared.Sound
}
}
[DataDefinition]
public sealed class SoundCollectionSpecifier : SoundSpecifier
{
public const string Node = "collection";