fec2cd8d24
- serialization - chunks - parralelfor test
9 lines
325 B
C#
9 lines
325 B
C#
namespace Nerfed.Runtime.Scene;
|
|
|
|
/// <summary>
|
|
/// Marks an unmanaged struct as a serializable scene component.
|
|
/// Only types with this attribute will be saved/loaded by the scene system.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Struct, Inherited = false)]
|
|
public sealed class SceneComponentAttribute : Attribute { }
|