mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
16 lines
461 B
C#
16 lines
461 B
C#
using Robust.LoaderApi;
|
|
using Robust.Shared.ContentPack;
|
|
using Robust.Shared.Utility;
|
|
|
|
namespace Robust.Client.ResourceManagement;
|
|
|
|
/// <inheritdoc />
|
|
internal interface IResourceCacheInternal : IResourceCache
|
|
{
|
|
void TextureLoaded(TextureLoadedEventArgs eventArgs);
|
|
void RsiLoaded(RsiLoadedEventArgs eventArgs);
|
|
void PreloadTextures();
|
|
|
|
void MountLoaderApi(IResourceManager manager, IFileApi api, string apiPrefix, ResPath? prefix = null);
|
|
}
|