mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
13 lines
No EOL
385 B
C#
13 lines
No EOL
385 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.CustomImplementation.System {
|
|
public static class EnvironmentImpl {
|
|
[MethodAlias(Name = "System.String System.Environment.GetResourceFromDefault(System.String)")]
|
|
public static string GetResourceFromDefault(string aResource) {
|
|
return aResource;
|
|
}
|
|
}
|
|
} |