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