mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
13 lines
251 B
C#
13 lines
251 B
C#
using System;
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.Core_Plugs.System
|
|
{
|
|
[Plug(Target=typeof(GC))]
|
|
public static class GCImpl
|
|
{
|
|
public static void _SuppressFinalize(object o) {
|
|
// not implemented yet
|
|
}
|
|
}
|
|
}
|