Jeremy Pritts a54cae1e35 GameBundle refactor:
* InitializeFromPaths => FromPaths
* Set up backend support for stripped version specification (#252)
* Move IDependencyProvider and IResourceProvider
2023-07-20 17:24:06 -04:00

9 lines
172 B
C#

using AssetRipper.IO.Files.ResourceFiles;
namespace AssetRipper.Assets.Bundles;
public interface IResourceProvider
{
ResourceFile? FindResource(string identifier);
}