mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 05:52:11 +00:00
19 lines
581 B
C#
19 lines
581 B
C#
using System;
|
|
using Cosmos.IL2CPU.API;
|
|
using Cosmos.IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.System_Plugs.System {
|
|
[Plug(Target = typeof(Environment))]
|
|
public static class EnvironmentImpl {
|
|
// [PlugMethod(Signature = "System_Environment_OSName__System_Environment_get_OSInfo__")]
|
|
// public static int get_OSName() { return 0x82; }
|
|
|
|
public static string GetResourceFromDefault(string aResource) {
|
|
return "";
|
|
}
|
|
|
|
public static string GetResourceString(string aResource) {
|
|
return "";
|
|
}
|
|
}
|
|
}
|