Public release

This commit is contained in:
Dave Allie
2025-12-03 22:06:45 +11:00
commit 2ccdbeecc8
54 changed files with 33356 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#pragma once
#include <string>
class ZipFile {
std::string filePath;
public:
explicit ZipFile(std::string filePath) : filePath(std::move(filePath)) {}
~ZipFile() = default;
char* readTextFileToMemory(const char* filename, size_t* size = nullptr) const;
uint8_t* readFileToMemory(const char* filename, size_t* size = nullptr, bool trailingNullByte = false) const;
};