mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
7 lines
133 B
C#
7 lines
133 B
C#
namespace AssetRipper.IO.Files.SerializedFiles.IO;
|
|
|
|
public interface ISerializedReadable
|
|
{
|
|
void Read(SerializedReader reader);
|
|
}
|