mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
12 lines
270 B
C#
12 lines
270 B
C#
using System;
|
|
using IL2CPU.API;
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.Core_Plugs.System {
|
|
[Plug(Target=typeof(OutOfMemoryException))]
|
|
public static class OutOfMemoryExceptionImpl {
|
|
public static void Ctor(OutOfMemoryException aThis) {
|
|
//
|
|
}
|
|
}
|
|
}
|