mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-23 06:18:54 +00:00
16 lines
321 B
C#
16 lines
321 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
using Cosmos.IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.Core_Plugs.System
|
|
{
|
|
[Plug(TargetName = "System.Environment, System.Private.CoreLib")]
|
|
public static class EnvironmentImpl
|
|
{
|
|
public static void CCtor()
|
|
{
|
|
}
|
|
}
|
|
}
|