namespace Nerfed.Runtime.Scene; /// /// Marks an unmanaged struct as a serializable scene relation kind. /// Both endpoints and the data payload will be saved/loaded by the scene system. /// The hierarchy is handled separately via /// and should NOT be marked with this attribute. /// [AttributeUsage(AttributeTargets.Struct, Inherited = false)] public sealed class SceneRelationAttribute : Attribute { }