2024-08-30 06:27:14 -04:00
|
|
|
#include "log.h"
|
2024-08-28 17:27:35 -04:00
|
|
|
#define INPUT_BUFFER_MAX_LENGTH 80
|
|
|
|
|
|
|
|
typedef struct Input {
|
|
|
|
char input_buffer[INPUT_BUFFER_MAX_LENGTH];
|
|
|
|
int input_length;
|
2024-08-30 06:27:14 -04:00
|
|
|
Vector2 position;
|
|
|
|
Log *log;
|
2024-08-28 17:27:35 -04:00
|
|
|
} Input;
|
|
|
|
|
|
|
|
void handle_pressed_keys(Input*);
|
2024-08-30 06:27:14 -04:00
|
|
|
void draw_text(Input*);
|
|
|
|
Input *create_input(Vector2);
|