summaryrefslogtreecommitdiff
path: root/core/io/pck_packer.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/io/pck_packer.h')
-rw-r--r--core/io/pck_packer.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/core/io/pck_packer.h b/core/io/pck_packer.h
index a4eba04f2d..1edb14ab27 100644
--- a/core/io/pck_packer.h
+++ b/core/io/pck_packer.h
@@ -34,7 +34,7 @@ class PCKPacker : public Reference {
GDCLASS(PCKPacker, Reference);
- FileAccess* file;
+ FileAccess *file;
int alignment;
static void _bind_methods();
@@ -49,11 +49,10 @@ class PCKPacker : public Reference {
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 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();
};