Cosmos/source/Cosmos.IL2CPU.API/Attribs/ForceInclude.cs
José Pedro 741ab09ec3 g3
2017-08-03 21:36:17 +01:00

12 lines
372 B
C#

using System;
namespace Cosmos.IL2CPU.API.Attribs
{
/// <summary>
/// Use this attribute to force the inclusion of a class, struct or a method in the compiled code.
/// </summary>
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Method, AllowMultiple = false)]
public class ForceInclude : Attribute
{
}
}