Last active
November 16, 2017 00:48
-
-
Save mosluce/845f248b4affc7aea21617e180bacde2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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