mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
10 lines
241 B
C#
10 lines
241 B
C#
using System;
|
|
|
|
namespace Cosmos.IL2CPU.Plugs.System {
|
|
[Plug(Target=typeof(OutOfMemoryException))]
|
|
public static class OutOfMemoryExceptionImpl {
|
|
public static void Ctor(OutOfMemoryException aThis) {
|
|
//
|
|
}
|
|
}
|
|
}
|