mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-14 07:40:11 -05:00
10 lines
156 B
C#
10 lines
156 B
C#
using System.IO;
|
|
|
|
namespace pkNX.Containers.VFS;
|
|
|
|
public interface IBinarySerializable
|
|
{
|
|
void Read(BinaryReader br);
|
|
void Write(BinaryWriter bw);
|
|
}
|