HandmadeHero/project/platform/context.hpp

16 lines
172 B
C++
Raw Normal View History

2023-10-01 17:17:14 -07:00
#include "platform.hpp"
struct Context
{
Context* parent;
// AllocatorInfo allocator;
// Logger logger;
};
Context* make_context();
#include "gen/context.gen.hpp"