mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
16 lines
475 B
C#
16 lines
475 B
C#
using System;
|
|
|
|
namespace Cosmos.IL2CPU.API.Attribs
|
|
{
|
|
/// <summary>
|
|
/// Method Attribute used to disable the outputing of the call to the DebugStub in that method
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
|
|
public sealed class DebugStub : Attribute
|
|
{
|
|
/// <summary>
|
|
/// Set to <value>true</value> to disable DebugStub
|
|
/// </summary>
|
|
public bool Off = false;
|
|
}
|
|
}
|