mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
14 lines
329 B
C#
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..
|
|
}
|
|
}
|
|
}
|