mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
* Serialization docs Co-authored-by: Moony <moonheart08@users.noreply.github.com> * ECS docs Co-authored-by: Moony <moonheart08@users.noreply.github.com> * scattered docs Co-authored-by: Moony <moonheart08@users.noreply.github.com> * Fixes --------- Co-authored-by: Moony <moonheart08@users.noreply.github.com> Co-authored-by: PJB3005 <pieterjan.briers+git@gmail.com>
11 lines
437 B
C#
11 lines
437 B
C#
using System;
|
|
|
|
namespace Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
/// <summary>
|
|
/// Used to denote that a type is not serializable to yaml, and should not be used as a data-field.
|
|
/// Types marked with this will cause an error early in serialization init if used as a field.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)]
|
|
internal sealed class NotYamlSerializableAttribute : Attribute;
|