mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
13 lines
315 B
C#
13 lines
315 B
C#
using Cosmos.IL2CPU.Plugs;
|
|
|
|
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..
|
|
}
|
|
}
|
|
}
|