Fix serv warnings (#4400)
This commit is contained in:
@@ -10,7 +10,6 @@ using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototy
|
|||||||
namespace Content.Server.Chemistry.ReagentEntityReactions
|
namespace Content.Server.Chemistry.ReagentEntityReactions
|
||||||
{
|
{
|
||||||
[UsedImplicitly]
|
[UsedImplicitly]
|
||||||
[DataDefinition]
|
|
||||||
public class AddToSolutionReaction : ReagentEntityReaction
|
public class AddToSolutionReaction : ReagentEntityReaction
|
||||||
{
|
{
|
||||||
[DataField("reagents", true, customTypeSerializer:typeof(PrototypeIdHashSetSerializer<ReagentPrototype>))]
|
[DataField("reagents", true, customTypeSerializer:typeof(PrototypeIdHashSetSerializer<ReagentPrototype>))]
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototy
|
|||||||
namespace Content.Server.Chemistry.ReagentEntityReactions
|
namespace Content.Server.Chemistry.ReagentEntityReactions
|
||||||
{
|
{
|
||||||
[UsedImplicitly]
|
[UsedImplicitly]
|
||||||
[DataDefinition]
|
|
||||||
public class ExtinguishReaction : ReagentEntityReaction
|
public class ExtinguishReaction : ReagentEntityReaction
|
||||||
{
|
{
|
||||||
[DataField("reagents", true, customTypeSerializer:typeof(PrototypeIdHashSetSerializer<ReagentPrototype>))]
|
[DataField("reagents", true, customTypeSerializer:typeof(PrototypeIdHashSetSerializer<ReagentPrototype>))]
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototy
|
|||||||
namespace Content.Server.Chemistry.ReagentEntityReactions
|
namespace Content.Server.Chemistry.ReagentEntityReactions
|
||||||
{
|
{
|
||||||
[UsedImplicitly]
|
[UsedImplicitly]
|
||||||
[DataDefinition]
|
|
||||||
public class FlammableReaction : ReagentEntityReaction
|
public class FlammableReaction : ReagentEntityReaction
|
||||||
{
|
{
|
||||||
[DataField("reagents", true, customTypeSerializer:typeof(PrototypeIdHashSetSerializer<ReagentPrototype>))]
|
[DataField("reagents", true, customTypeSerializer:typeof(PrototypeIdHashSetSerializer<ReagentPrototype>))]
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototy
|
|||||||
namespace Content.Server.Chemistry.ReagentEntityReactions
|
namespace Content.Server.Chemistry.ReagentEntityReactions
|
||||||
{
|
{
|
||||||
[UsedImplicitly]
|
[UsedImplicitly]
|
||||||
[DataDefinition]
|
|
||||||
public class WashCreamPieReaction : ReagentEntityReaction
|
public class WashCreamPieReaction : ReagentEntityReaction
|
||||||
{
|
{
|
||||||
[DataField("reagents", true, customTypeSerializer:typeof(PrototypeIdHashSetSerializer<ReagentPrototype>))]
|
[DataField("reagents", true, customTypeSerializer:typeof(PrototypeIdHashSetSerializer<ReagentPrototype>))]
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ namespace Content.Shared.Chemistry.Reagent
|
|||||||
Ingestion,
|
Ingestion,
|
||||||
}
|
}
|
||||||
|
|
||||||
[DataDefinition]
|
[ImplicitDataDefinitionForInheritors]
|
||||||
public abstract class ReagentEntityReaction
|
public abstract class ReagentEntityReaction
|
||||||
{
|
{
|
||||||
[ViewVariables]
|
[ViewVariables]
|
||||||
|
|||||||
@@ -8,13 +8,12 @@ using Robust.Shared.Utility;
|
|||||||
|
|
||||||
namespace Content.Shared.Sound
|
namespace Content.Shared.Sound
|
||||||
{
|
{
|
||||||
[DataDefinition]
|
[ImplicitDataDefinitionForInheritors]
|
||||||
public abstract class SoundSpecifier
|
public abstract class SoundSpecifier
|
||||||
{
|
{
|
||||||
public abstract string GetSound();
|
public abstract string GetSound();
|
||||||
}
|
}
|
||||||
|
|
||||||
[DataDefinition]
|
|
||||||
public sealed class SoundPathSpecifier : SoundSpecifier
|
public sealed class SoundPathSpecifier : SoundSpecifier
|
||||||
{
|
{
|
||||||
public const string Node = "path";
|
public const string Node = "path";
|
||||||
@@ -42,7 +41,6 @@ namespace Content.Shared.Sound
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[DataDefinition]
|
|
||||||
public sealed class SoundCollectionSpecifier : SoundSpecifier
|
public sealed class SoundCollectionSpecifier : SoundSpecifier
|
||||||
{
|
{
|
||||||
public const string Node = "collection";
|
public const string Node = "collection";
|
||||||
|
|||||||
Reference in New Issue
Block a user