Cosmos/source/Cosmos.Core_Plugs/System/OutOfMemoryExceptionImpl.cs
2017-08-03 15:17:34 -04:00

12 lines
284 B
C#

using System;
using Cosmos.IL2CPU.API;
using Cosmos.IL2CPU.API.Attribs;
namespace Cosmos.Core_Plugs.System {
[Plug(Target=typeof(OutOfMemoryException))]
public static class OutOfMemoryExceptionImpl {
public static void Ctor(OutOfMemoryException aThis) {
//
}
}
}