Cosmos/source/Cosmos.Core_Plugs/System/Resources/ResourceManagerImpl.cs

25 lines
508 B
C#

using System;
using System.Resources;
using Cosmos.IL2CPU.API;
using Cosmos.IL2CPU.API.Attribs;
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);
}
}
}