mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-10-31 23:55:06 -04:00
27 lines
430 B
C
27 lines
430 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <vector>
|
||
|
#include <map>
|
||
|
#include <string>
|
||
|
|
||
|
class ZRom
|
||
|
{
|
||
|
public:
|
||
|
ZRom(std::string romPath);
|
||
|
|
||
|
std::vector<uint8_t> GetFile(std::string fileName);
|
||
|
|
||
|
protected:
|
||
|
std::vector<uint8_t> romData;
|
||
|
std::map<std::string, std::vector<uint8_t>> files;
|
||
|
};
|
||
|
|
||
|
struct RomVersion
|
||
|
{
|
||
|
std::string version = "None";
|
||
|
std::string error = "None";
|
||
|
std::string listPath = "None";
|
||
|
int offset;
|
||
|
uint32_t crc;
|
||
|
};
|