Files

12 lines
261 B
C#
Raw Permalink Normal View History

using Robust.Client.ResourceManagement;
using Robust.Shared.ContentPack;
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>();
2020-01-09 00:27:52 +01:00
}
}