mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 13:28:41 +00:00
11 lines
251 B
C#
11 lines
251 B
C#
using System;
|
|
using Cosmos.IL2CPU.API;
|
|
|
|
namespace Cosmos.Core_Plugs.System {
|
|
[Plug(Target=typeof(OutOfMemoryException))]
|
|
public static class OutOfMemoryExceptionImpl {
|
|
public static void Ctor(OutOfMemoryException aThis) {
|
|
//
|
|
}
|
|
}
|
|
}
|