Make all prototype types partial (#21374)
This commit is contained in:
@@ -8,7 +8,7 @@ using Robust.Shared.Utility;
|
||||
namespace Content.Shared.Research.Prototypes
|
||||
{
|
||||
[NetSerializable, Serializable, Prototype("latheRecipe")]
|
||||
public sealed class LatheRecipePrototype : IPrototype
|
||||
public sealed partial class LatheRecipePrototype : IPrototype
|
||||
{
|
||||
[ViewVariables]
|
||||
[IdDataField]
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace Content.Shared.Research.Prototypes;
|
||||
/// that governs how <see cref="TechnologyPrototype"/>s are unlocked.
|
||||
/// </summary>
|
||||
[Prototype("techDiscipline")]
|
||||
public sealed class TechDisciplinePrototype : IPrototype
|
||||
public sealed partial class TechDisciplinePrototype : IPrototype
|
||||
{
|
||||
/// <inheritdoc/>
|
||||
[IdDataField]
|
||||
|
||||
@@ -7,7 +7,7 @@ namespace Content.Shared.Research.Prototypes;
|
||||
/// This is a prototype for a technology that can be unlocked.
|
||||
/// </summary>
|
||||
[Prototype("technology")]
|
||||
public sealed class TechnologyPrototype : IPrototype
|
||||
public sealed partial class TechnologyPrototype : IPrototype
|
||||
{
|
||||
/// <inheritdoc/>
|
||||
[IdDataField]
|
||||
|
||||
Reference in New Issue
Block a user