mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 05:18:38 +00:00
24 lines
480 B
C#
24 lines
480 B
C#
using System;
|
|
using System.Resources;
|
|
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.Core.Plugs.System.Resources
|
|
{
|
|
[Plug(typeof(ResourceManager))]
|
|
public static class ResourceManagerImpl
|
|
{
|
|
public static void CCtor()
|
|
{
|
|
}
|
|
|
|
|
|
public static void Ctor(Type aResourceSource)
|
|
{
|
|
}
|
|
|
|
public static string GetString(string aString)
|
|
{
|
|
return EnvironmentImpl.GetResourceString(aString);
|
|
}
|
|
}
|
|
}
|