Cosmos/source/Cosmos.IL2CPU/Plugs/Diagnostics/DebuggerImpl.cs
2015-12-26 18:04:58 -06:00

8 lines
No EOL
255 B
C#

namespace Cosmos.IL2CPU.Plugs.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..
}
}
}