iw5-mod/src/module/file_system.hpp

11 lines
238 B
C++
Raw Normal View History

#pragma once
class file_system final : public module
{
public:
void post_load() override;
static int open_file_by_mode(const char* qpath, int* f, game::native::fsMode_t mode);
static int write(const char* buffer, int len, int h);
};