public static void Write <T>(string relativePath, T file) where T : IRedOwlFile { Write(relativePath, RedOwlTools.ToBytes(file)); }
public static void Read <T>(string relativePath, out T file) where T : IRedOwlFile { file = RedOwlTools.FromBytes <T>(Read(relativePath)); }