15 lines
160 B
C++
Raw Normal View History

2023-10-07 02:33:39 -04:00
#pragma once
2023-10-01 20:17:14 -04:00
struct Context
{
Context* parent;
// AllocatorInfo allocator;
// Logger logger;
};
Context* make_context();
#include "gen/context.gen.hpp"