namespace Nerfed.Runtime.Scene; /// /// Marks an unmanaged struct as a serializable scene component. /// Only types with this attribute will be saved/loaded by the scene system. /// [AttributeUsage(AttributeTargets.Struct, Inherited = false)] public sealed class SceneComponentAttribute : Attribute { }