namespace Jovian.SaveSystem {
///
/// Converts typed data to and from byte arrays.
/// Implementations define the format (JSON, binary, etc.).
///
public interface ISaveSerializer {
byte[] Serialize(TData data);
TData Deserialize(byte[] payload);
}
}