godot/tools/pck/pck_packer.h
Juan Linietsky 9df77d2765 ability to run 2D physics in a thread
also, 2D physics is now thread safe too.
see physics_2d/thread_model
2015-05-26 01:06:05 -03:00

32 lines
498 B
C++

#include "core/reference.h"
class FileAccess;
class PCKPacker : public Reference {
OBJ_TYPE(PCKPacker, Reference);
FileAccess* file;
int alignment;
static void _bind_methods();
struct File {
String path;
String src_path;
int size;
uint64_t offset_offset;
};
Vector<File> files;
public:
Error pck_start(const String& p_file, int p_alignment);
Error add_file(const String& p_file, const String& p_src);
Error flush(bool p_verbose = false);
PCKPacker();
~PCKPacker();
};