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