mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
11 lines
220 B
C#
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);
|
|
}
|
|
}
|