Start of entity serialization

This commit is contained in:
Simon Lübeß
2023-12-15 14:53:31 +01:00
parent b884ee8303
commit 89e4e4ef17
2 changed files with 302 additions and 0 deletions
@@ -0,0 +1,12 @@
using System;
namespace GlitchyEngine.Serialization;
/// <summary>
/// Specifies that the field should not be serialized.
/// </summary>
/// <seealso cref="SerializeFieldAttribute"/>
[AttributeUsage(AttributeTargets.Field)]
public sealed class DontSerializeFieldAttribute : Attribute
{
}