mirror of
https://github.com/Ed94/HandmadeHero.git
synced 2024-11-10 03:44:53 -08:00
16 lines
172 B
C++
16 lines
172 B
C++
#include "platform.hpp"
|
|
|
|
|
|
struct Context
|
|
{
|
|
Context* parent;
|
|
// AllocatorInfo allocator;
|
|
// Logger logger;
|
|
};
|
|
|
|
|
|
Context* make_context();
|
|
|
|
|
|
#include "gen/context.gen.hpp"
|