Obsolete some useless type proxies on IResourceCache

These aren't even used, but they're pretty objectively bad ideas so let's obsolete them so we can get rid of them later.
This commit is contained in:
Pieter-Jan Briers
2024-09-09 11:22:07 +02:00
parent 814e5bcf17
commit f682fb9cc7

View File

@@ -48,7 +48,10 @@ public interface IResourceCache : IResourceManager
event Action<TextureLoadedEventArgs> OnRawTextureLoaded;
event Action<RsiLoadedEventArgs> OnRsiLoaded;
[Obsolete("Fetch these through IoC directly instead")]
IClyde Clyde { get; }
[Obsolete("Fetch these through IoC directly instead")]
IFontManager FontManager { get; }
}