Cosmos/source/Cosmos.IL2CPU.API/ForceIncludeAttribute.cs
José Pedro cd6f2ddc4c g3
2017-08-03 20:14:57 +01:00

14 lines
426 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Cosmos.IL2CPU.API
{
/// <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 ForceIncludeAttribute : Attribute
{
}
}