initial commit

This commit is contained in:
Kyle Isom 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

17
Cursor.h Normal file
View File

@ -0,0 +1,17 @@
#ifndef _KGE_CURSOR_H_
#define _KGE_CURSOR_H_
#include <cstdint>
struct Cursor {
uint32_t x;
uint32_t y;
};
Cursor CursorFromXY(uint32_t x, uint32_t y);
#endif

3221
imgui.h Normal file

File diff suppressed because it is too large Load Diff