mirror of
https://github.com/izzy2lost/Diddy-Kong-Racing.git
synced 2026-06-19 01:16:26 -07:00
11 lines
271 B
C++
11 lines
271 B
C++
#include "extract_binary.h"
|
|
|
|
ExtractBinary::ExtractBinary(std::vector<uint8_t> data, ROM& rom, std::string outFilepath)
|
|
: Extract(data, rom, outFilepath) {
|
|
write_binary_file(data, outFilepath);
|
|
print_extracted(outFilepath);
|
|
}
|
|
|
|
ExtractBinary::~ExtractBinary(){
|
|
}
|