mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
16 lines
470 B
C#
16 lines
470 B
C#
using Robust.LoaderApi;
|
|
using Robust.Shared.ContentPack;
|
|
using Robust.Shared.Utility;
|
|
|
|
namespace Robust.Client.ResourceManagement
|
|
{
|
|
internal interface IResourceCacheInternal : IResourceCache, IResourceManagerInternal
|
|
{
|
|
void TextureLoaded(TextureLoadedEventArgs eventArgs);
|
|
void RsiLoaded(RsiLoadedEventArgs eventArgs);
|
|
|
|
void MountLoaderApi(IFileApi api, string apiPrefix, ResPath? prefix=null);
|
|
void PreloadTextures();
|
|
}
|
|
}
|