HandmadeHero/project/platform/context.hpp
2023-10-07 02:33:39 -04:00

15 lines
160 B
C++

#pragma once
struct Context
{
Context* parent;
// AllocatorInfo allocator;
// Logger logger;
};
Context* make_context();
#include "gen/context.gen.hpp"