mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
25 lines
493 B
C#
25 lines
493 B
C#
using System;
|
|
using System.Resources;
|
|
using IL2CPU.API;
|
|
using 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 SRImpl.InternalGetResourceString(aString);
|
|
}
|
|
}
|
|
}
|