thrive/01_text_adventure/main.c

33 lines
568 B
C
Raw Normal View History

2024-08-28 17:27:35 -04:00
#include "../raylib.h"
2024-08-30 06:27:14 -04:00
#include "log.h"
2024-08-28 17:27:35 -04:00
#include "input.h"
#include <stdlib.h>
#define TARGET_FPS 60
int main(void)
{
InitWindow(800, 450, "Text Adventure");
SetTargetFPS(TARGET_FPS);
2024-08-30 06:27:14 -04:00
Log *log = create_log();
Vector2 input_position = { 190, 200 };
Input *input = create_input(input_position);
input->log = log;
2024-08-28 17:27:35 -04:00
while (!WindowShouldClose())
{
BeginDrawing();
ClearBackground(BLACK);
handle_pressed_keys(input);
2024-08-30 06:27:14 -04:00
draw_log(log);
draw_text(input);
2024-08-28 17:27:35 -04:00
EndDrawing();
}
CloseWindow();
2024-08-30 06:27:14 -04:00
free(input);
2024-08-28 17:27:35 -04:00
return 0;
}