h1-mod/src/client/component/filesystem.hpp

19 lines
274 B
C++
Raw Normal View History

#pragma once
namespace filesystem
{
class file
{
public:
file(std::string name);
bool exists() const;
const std::string& get_buffer() const;
const std::string& get_name() const;
private:
bool valid_ = false;
std::string name_;
std::string buffer_;
};
}