Cosmos/source/Cosmos.Core_Plugs/System/Diagnostics/DebuggerImpl.cs
2017-12-10 15:57:12 +00:00

14 lines
329 B
C#

using IL2CPU.API;
using IL2CPU.API.Attribs;
namespace Cosmos.Core_Plugs.System.Diagnostics
{
[Plug(Target = typeof(global::System.Diagnostics.Debugger))]
public static class DebuggerImpl
{
public static void Break()
{
// leave empty, this is handled by a special case..
}
}
}