Make all prototype types partial (#21374)
This commit is contained in:
@@ -5,7 +5,7 @@ using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototy
|
||||
namespace Content.Shared.EntityList
|
||||
{
|
||||
[Prototype("entityList")]
|
||||
public sealed class EntityListPrototype : IPrototype
|
||||
public sealed partial class EntityListPrototype : IPrototype
|
||||
{
|
||||
[ViewVariables]
|
||||
[IdDataField]
|
||||
|
||||
@@ -6,7 +6,7 @@ using Robust.Shared.Random;
|
||||
namespace Content.Shared.EntityList;
|
||||
|
||||
[Prototype("entityLootTable")]
|
||||
public sealed class EntityLootTablePrototype : IPrototype
|
||||
public sealed partial class EntityLootTablePrototype : IPrototype
|
||||
{
|
||||
[IdDataField]
|
||||
public string ID { get; private set; } = default!;
|
||||
|
||||
Reference in New Issue
Block a user