mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
11 lines
235 B
C#
11 lines
235 B
C#
using Robust.Client.Interfaces.ResourceManagement;
|
|
using Robust.Shared.IoC;
|
|
|
|
namespace Content.Client
|
|
{
|
|
public static class StaticIoC
|
|
{
|
|
public static IResourceCache ResC => IoCManager.Resolve<IResourceCache>();
|
|
}
|
|
}
|