mirror of
https://github.com/Ed94/HandmadeHero.git
synced 2024-11-12 20:44:52 -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"
|