Fix prototypes so they pass analyzer checks (#35435)
This commit is contained in:
@@ -9,10 +9,10 @@ namespace Content.Shared.Storage;
|
||||
/// Prototype wrapper around <see cref="EntitySpawnEntry"/>
|
||||
/// </summary>
|
||||
[Prototype]
|
||||
public sealed class EntitySpawnEntryPrototype : IPrototype
|
||||
public sealed partial class EntitySpawnEntryPrototype : IPrototype
|
||||
{
|
||||
[IdDataField]
|
||||
public string ID { get; } = string.Empty;
|
||||
public string ID { get; private set; } = string.Empty;
|
||||
|
||||
[DataField]
|
||||
public List<EntitySpawnEntry> Entries = new();
|
||||
|
||||
Reference in New Issue
Block a user