fixed testing

This commit is contained in:
2025-01-28 13:36:01 -08:00
parent caf148175b
commit f73586a28d
6 changed files with 51 additions and 42 deletions

View File

@@ -72,8 +72,8 @@ struct tart_window {
tart_byte buffer_count;
};
struct tart_buffer tart_create_buffer(tart_id, struct tart_vec2, struct tart_vec2);
struct tart_cell tart_create_cell(char, tart_byte, struct tart_rgb, struct tart_rgb);
struct tart_buffer tart_create_buffer(tart_id id, struct tart_vec2 size, struct tart_vec2 position);
struct tart_cell tart_create_cell(char display, tart_byte style, struct tart_rgb foreground, struct tart_rgb background);
tart_byte tart_add_buffer(struct tart_window*, struct tart_buffer);
tart_byte tart_set_buffer(struct tart_window*, struct tart_buffer, tart_byte);