Browse Source

Add missing code \o/

Godzil 4 years ago
parent
commit
66a8b98aeb
1 changed files with 3 additions and 1 deletions
  1. 3 1
      source/include/group.h

+ 3 - 1
source/include/group.h

@@ -50,7 +50,9 @@ public:
 
     uint32_t getObjectCount() { return this->objectCount + this->unboxableObjectCount; };
 
-    Group();
+    Group(const char *name = nullptr);
+
+    const char *getName() { return this->name; };
 
     void dumpMe(FILE * fp);
 };