This repository has been archived on 2023-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
mfgames-nitride-cil/src/MfGames.Nitride/Generators/SingletonComponentAttribute.cs

13 lines
328 B
C#

using System;
namespace MfGames.Nitride.Generators;
/// <summary>
/// A marker attribute that indicates that the source generator should
/// automatically create the plumbing for an instance-based flag component.
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
public class SingletonComponentAttribute : Attribute
{
}