mirror of
https://github.com/fedddddd/iw5-gsc-utils.git
synced 2026-08-01 04:40:34 +00:00
21 lines
332 B
C++
21 lines
332 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace utils
|
|
{
|
|
class binary_resource
|
|
{
|
|
public:
|
|
binary_resource(int id, std::string file);
|
|
|
|
std::string get_extracted_file(bool fatal_if_overwrite_fails = false);
|
|
const std::string& get_data() const;
|
|
|
|
private:
|
|
std::string resource_;
|
|
std::string filename_;
|
|
std::string path_;
|
|
};
|
|
}
|