updated input

This commit is contained in:
Patrick Schwarzer 2025-04-30 16:53:53 +02:00
parent f44bcede74
commit b5c44e845a
5 changed files with 45 additions and 12 deletions

View file

@ -1,4 +1,16 @@
#pragma once
void process_input(SDL_Keysym &keysym, bool down, lua_State &luaState);
#include <SDL.h>
#include <glad/glad.h>
#include <iostream>
extern "C" {
#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>
}
void process_input(SDL_Keysym &keysym, bool down, lua_State *luaState);