Add Context to core

This commit is contained in:
2017-10-12 04:50:33 -05:00
parent 329e8be825
commit 507c894c15
8 changed files with 62 additions and 28 deletions
+5 -3
View File
@@ -9,14 +9,16 @@
#include <ox/std/types.hpp>
#include "context.hpp"
namespace nostalgia {
namespace core {
ox::Error initGfx();
ox::Error initGfx(Context *ctx);
void initConsole();
ox::Error initConsole(Context *ctx);
void puts(int loc, const char *str);
void puts(Context *ctx, int loc, const char *str);
}
}