mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
17 lines
365 B
C#
17 lines
365 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace GlitchyEngine.Serialization;
|
|
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)]
|
|
public sealed class CustomSerializerAttribute : Attribute
|
|
{
|
|
public Type Type { get; private set; }
|
|
|
|
public CustomSerializerAttribute(Type type)
|
|
{
|
|
Type = type;
|
|
}
|
|
}
|