Files
Tart/source/term.h
2025-01-29 10:51:20 -08:00

17 lines
797 B
C

// #========================================================================#
// | PREACHERDHM:TERM |
// | |
// | term renders all of the data from TART. Term takes a tart_window and |
// | renders all of the buffers and cells inside the that window object. |
// | There is a draw function and a draw buffer function. |
// | |
// | Term is just a way to output the data from tart. |
// #========================================================================#
#ifndef TERM_H
#define TERM_H
#include "tart.h"
struct tart_vec2 term_current_size();
#endif