Files
448d202a16 Add deterministic disposal for textures in IResourceCache (#6483)
* Add deterministic disposal for textures in IResourceCache

* Review

* Thanks PJB

Co-authored-by: Pieter-Jan Briers <pieterjan.briers@gmail.com>

* Review

---------

Co-authored-by: Pieter-Jan Briers <pieterjan.briers@gmail.com>
2026-05-08 11:43:32 +02:00

13 lines
333 B
C#

namespace Robust.Client.ResourceManagement;
/// <summary>
/// Defines type-level metadata for resource types.
/// </summary>
public interface IBaseResource
{
/// <summary>
/// Whether resources of this type can be deterministically removed from the cache.
/// </summary>
static virtual bool CanBeRemoved => false;
}