Started on input, tired

This commit is contained in:
2022-10-19 20:42:33 +01:00
parent 951453640f
commit 893430469b
7 changed files with 116 additions and 22 deletions

View File

@@ -2,6 +2,7 @@
#include "lib_engine.h"
#include "lib_render.h"
#include "lib_input.h"
#include "lib_standard.h"
#include "repl_tools.h"
@@ -43,6 +44,7 @@ void initEngine() {
initInterpreter(&engine.interpreter);
injectNativeHook(&engine.interpreter, "engine", hookEngine);
injectNativeHook(&engine.interpreter, "render", hookRender);
injectNativeHook(&engine.interpreter, "input", hookInput);
injectNativeHook(&engine.interpreter, "standard", hookStandard);
size_t size = 0;