namespace AcDream.App.Rendering.Wb;
///
/// Logical-owner lifetime seam for per-entity texture composites. Retail
/// CSurface::Destroy (0x005361F0) releases its current ImgTex;
/// live-object teardown must do the same for modern bindless composites.
///
public interface IEntityTextureLifetime
{
/// Release every composite acquired by one local entity id.
void ReleaseOwner(uint localEntityId);
}