blob: 12b1bc47ae1a1909c8ad9ff62a02245437367376 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _INPUT_H
#define _INPUT_H
#include "editor.h"
#include <SDL2/SDL_keyboard.h>
void input_process_textinput(struct editor_state *editor, const char *text);
void editor_process_keypress(struct editor_state *editor, SDL_Keysym *keysym);
#endif
|