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