mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-03 02:27:08 +02:00
* Fix missing Attribute suffix from some serialization attributes * Rename DataDefinition namespace to Definition
12 lines
281 B
C#
12 lines
281 B
C#
using System;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace Robust.Shared.Serialization.Manager.Attributes
|
|
{
|
|
[BaseTypeRequired(typeof(Attribute))]
|
|
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
|
|
public class MeansDataDefinitionAttribute : Attribute
|
|
{
|
|
}
|
|
}
|