Cosmos/source/Cosmos.Core.Plugs/System/Resources/ResourceManagerImpl.cs
Charles Betros 2637bc9b41 Plugs
2017-02-05 01:36:54 -06:00

25 lines
516 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Resources;
using System.Threading.Tasks;
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(ResourceManager aThis)
{
}
public static void SetAppXConfiguration(ResourceManager aThis)
{
}
}
}