2023-01-14 11:31:39 -05:00

11 lines
220 B
C#

using AssetRipper.IO.Files.Streams.Smart;
namespace AssetRipper.IO.Files
{
public interface IScheme
{
bool CanRead(SmartStream stream);
FileBase Read(SmartStream stream, string filePath, string fileName);
}
}