kge/Buffer.h

19 lines
209 B
C

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