thrive/01_text_adventure/input.h

22 lines
379 B
C
Raw Normal View History

2025-01-02 20:57:00 -05:00
#ifndef _FD_INPUT_
#define _FD_INPUT_
#include "game.h"
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;
2025-01-02 20:57:00 -05:00
GameState *gs;
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);
2025-01-02 20:57:00 -05:00
void free_input(Input*);
#endif