scratch-io 0.1.4

A rust library for managing, downloading, and launching games from itch.io
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
syntax = "proto3";

package io.itch.wharf.bsdiff;
option go_package = "bsdiff";

// Control is a bsdiff operation, see https://twitter.com/fasterthanlime/status/790617515009437701
message Control {
  bytes add = 1;
  bytes copy = 2;
  int64 seek = 3;
  bool eof = 4; // when true, don't apply and stop reading bsdiff control
}