This commit is contained in:
Alex Yatskov 2019-01-08 18:12:53 -08:00
parent cfb72ee80c
commit 6da539496d

10
formats/dcc/dcc.go Normal file
View File

@ -0,0 +1,10 @@
package dcc
import "io"
type DccSprite struct {
}
func NewFromReader(reader io.ReadSeeker) (*DccSprite, error) {
return nil, nil
}