14 lines
272 B
C
14 lines
272 B
C
#include "log.h"
|
|
#define INPUT_BUFFER_MAX_LENGTH 80
|
|
|
|
typedef struct Input {
|
|
char input_buffer[INPUT_BUFFER_MAX_LENGTH];
|
|
int input_length;
|
|
Vector2 position;
|
|
Log *log;
|
|
} Input;
|
|
|
|
void handle_pressed_keys(Input*);
|
|
void draw_text(Input*);
|
|
Input *create_input(Vector2);
|