diff options
Diffstat (limited to 'src/i_ui.go')
-rw-r--r-- | src/i_ui.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/i_ui.go b/src/i_ui.go index 5002fe1..b72fbae 100644 --- a/src/i_ui.go +++ b/src/i_ui.go @@ -60,6 +60,11 @@ import ( "golang.org/x/term" ) +type Buffer struct { + str string + cursor int +} + type HardUI struct { s tcell.Screen mode uint8 |