Add helpers to load textures and fonts.

This commit is contained in:
Pieter-Jan Briers
2019-02-24 16:14:19 +01:00
parent dfcfd9b04f
commit 7664fcf1f4
2 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
using JetBrains.Annotations;
using SS14.Client.Graphics;
using SS14.Client.Interfaces.ResourceManagement;
using SS14.Client.ResourceManagement;
using SS14.Shared.Utility;
namespace Content.Client.Utility
{
[PublicAPI]
public static class ResourceCacheExtensions
{
public static Texture GetTexture(this IResourceCache cache, ResourcePath path)
{
return cache.GetResource<TextureResource>(path);
}
public static Texture GetTexture(this IResourceCache cache, string path)
{
return GetTexture(cache, new ResourcePath(path));
}
public static Font GetFont(this IResourceCache cache, ResourcePath path, int size)
{
return new VectorFont(cache.GetResource<FontResource>(path), size);
}
public static Font GetFont(this IResourceCache cache, string path, int size)
{
return cache.GetFont(new ResourcePath(path), size);
}
}
}