Files
OldThink/Content.Client/IoC/StaticIoC.cs

11 lines
228 B
C#
Raw Normal View History

using Robust.Client.ResourceManagement;
2020-01-09 00:27:52 +01:00
using Robust.Shared.IoC;
2021-06-09 22:19:39 +02:00
namespace Content.Client.IoC
2020-01-09 00:27:52 +01:00
{
public static class StaticIoC
{
public static IResourceCache ResC => IoCManager.Resolve<IResourceCache>();
}
}