mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-02 14:20:38 +00:00
25 lines
516 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|