summaryrefslogtreecommitdiff
path: root/ZAPD/FileWorker.h
blob: 6ceae8076b4c6899ba0a641efbcd1f8e35993230 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <map>
#include <string>
#include <vector>
#include "ZFile.h"

class FileWorker
{
public:
	std::vector<ZFile*> files;
	std::vector<ZFile*> externalFiles;
	std::vector<int32_t> segments;
	std::map<int32_t, std::vector<ZFile*>> segmentRefFiles;
};