diff options
Diffstat (limited to 'src/world.h')
-rw-r--r-- | src/world.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/world.h b/src/world.h index af6281d4..2499b761 100644 --- a/src/world.h +++ b/src/world.h @@ -6,16 +6,21 @@ #include "log.h" +#include "serd/memory.h" #include "serd/node.h" #include "serd/world.h" +#include <stdbool.h> #include <stdint.h> struct SerdWorldImpl { - SerdLimits limits; - SerdLog log; - uint32_t next_blank_id; - SerdNode* blank_node; + SerdLimits limits; + SerdAllocator* allocator; + SerdLog log; + uint32_t next_blank_id; + SerdNode* blank_node; + + bool stderr_color; }; #endif // SERD_SRC_WORLD_H |