#ifndef _KGE_BUFFER_H_ #define _KGE_BUFFER_H_ #include #include "Cursor.h" #define LINE_TYPE uint8_t ** struct Buffer { LINE_TYPE lines; uint32_t lineCount; Cursor cursor; }; #endif