mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
12 lines
372 B
C#
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
|
|
{
|
|
}
|
|
}
|