using System; namespace Cosmos.IL2CPU.API.Attribs { /// /// Method Attribute used to disable the outputing of the call to the DebugStub in that method /// [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)] public sealed class DebugStub : Attribute { /// /// Set to true to disable DebugStub /// public bool Off = false; } }