initial commit

This commit is contained in:
2023-10-04 17:38:04 -07:00
commit cab6cf1323
3 changed files with 3256 additions and 0 deletions

18
Buffer.h Normal file
View File

@@ -0,0 +1,18 @@
#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