Skip to content

Commit

Permalink
MHK 4 unpacking
Browse files Browse the repository at this point in the history
  • Loading branch information
SKevo18 committed Feb 11, 2024
1 parent 74b5d71 commit 387cd01
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkg/transformers/mhk_4.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,14 @@ import (
"strings"
)

// Packs MHK 4 (Thunder) data files.
func packMhk4(dataFileLocation string, rootFolder string) error {
return errors.New("not implemented")
return errors.New("MHK 4 packing is not implemented yet")
}

// Unpacks MHK 4 (Thunder) data files.
// MHK 4 has 2 data files in the installation directory: `data.sar` (main one),
// and `data.s01` (whose purpose is unknown, but it might be some demo data?).
func unpackMhk4(dataFileLocation string, outputDirectory string) error {
dataFile, err := os.Open(dataFileLocation)
if err != nil {
Expand Down

0 comments on commit 387cd01

Please sign in to comment.