thrive/01_text_adventure/log.h

15 lines
207 B
C
Raw Normal View History

2025-01-02 20:57:00 -05:00
#ifndef _FD_LOG_
#define _FD_LOG_
2024-08-30 06:27:14 -04:00
typedef struct Log {
char** lines;
int line_count;
} Log;
Log *create_log(void);
void draw_log(Log*);
void push_line_to_log(Log*, char*);
2025-01-02 20:57:00 -05:00
void free_log(Log*);
2024-08-30 06:27:14 -04:00
#endif