mirror of
https://github.com/jwetzell/psn-go.git
synced 2026-09-10 00:29:47 +00:00
move types out of decoders package
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package chunks
|
||||
|
||||
type ChunkHeader struct {
|
||||
Id uint16
|
||||
DataLen uint16
|
||||
HasSubchunks bool
|
||||
}
|
||||
|
||||
type Chunk struct {
|
||||
ChunkData []byte
|
||||
Header ChunkHeader
|
||||
}
|
||||
Reference in New Issue
Block a user