Cleanup: Remove redundant prototype name specifications (#35793)
* Remove redundant prototype name specifications * These can stay
This commit is contained in:
@@ -10,7 +10,7 @@ namespace Content.Shared.Store;
|
||||
/// Mainly used for antags, such as traitors, nukies, and revenants
|
||||
/// This is separate to the cargo ordering system.
|
||||
/// </summary>
|
||||
[Prototype("currency")]
|
||||
[Prototype]
|
||||
[DataDefinition, Serializable, NetSerializable]
|
||||
public sealed partial class CurrencyPrototype : IPrototype
|
||||
{
|
||||
|
||||
@@ -241,7 +241,7 @@ public partial class ListingData : IEquatable<ListingData>
|
||||
/// <summary>
|
||||
/// Defines a set item listing that is available in a store
|
||||
/// </summary>
|
||||
[Prototype("listing")]
|
||||
[Prototype]
|
||||
[Serializable, NetSerializable]
|
||||
[DataDefinition]
|
||||
public sealed partial class ListingPrototype : ListingData, IPrototype
|
||||
@@ -422,7 +422,7 @@ public sealed partial class ListingDataWithCostModifiers : ListingData
|
||||
/// Defines set of rules for category of discounts -
|
||||
/// how <see cref="StoreDiscountComponent"/> will be filled by respective system.
|
||||
/// </summary>
|
||||
[Prototype("discountCategory")]
|
||||
[Prototype]
|
||||
[DataDefinition, Serializable, NetSerializable]
|
||||
public sealed partial class DiscountCategoryPrototype : IPrototype
|
||||
{
|
||||
|
||||
@@ -6,7 +6,7 @@ namespace Content.Shared.Store;
|
||||
/// <summary>
|
||||
/// Used to define different categories for a store.
|
||||
/// </summary>
|
||||
[Prototype("storeCategory")]
|
||||
[Prototype]
|
||||
[Serializable, NetSerializable, DataDefinition]
|
||||
public sealed partial class StoreCategoryPrototype : IPrototype
|
||||
{
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace Content.Shared.Store;
|
||||
/// <summary>
|
||||
/// Specifies generic info for initializing a store.
|
||||
/// </summary>
|
||||
[Prototype("storePreset")]
|
||||
[Prototype]
|
||||
[DataDefinition]
|
||||
public sealed partial class StorePresetPrototype : IPrototype
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user