Skip to content

Instantly share code, notes, and snippets.

@mosluce
Last active November 16, 2017 00:48
Show Gist options
  • Save mosluce/845f248b4affc7aea21617e180bacde2 to your computer and use it in GitHub Desktop.
Save mosluce/845f248b4affc7aea21617e180bacde2 to your computer and use it in GitHub Desktop.
type Manifest struct {
CRC string `yaml:"CRC"`
Hashes Hashes `yaml:"Hashes"`
// 目前我只用到以上的部分,後面就懶得寫拉拉拉 (飄
}
type Hashes struct {
AssetFileHash Hash `yaml:"AssetFileHash"`
}
type Hash struct {
SerializedVersion int `yaml:"serializedVersion"`
Hash string `yaml:"Hash"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment