Cells are now drawn

This commit is contained in:
2022-11-05 18:43:57 -04:00
parent 11cab091dc
commit d739c0a6ed
3 changed files with 17 additions and 10 deletions

View File

@@ -9,7 +9,7 @@ func main () {
}
func run (application *stone.Application) {
for application.Await(0) {
for {
if application.Resized() {
application.SetRune(0, 0, 'h')
application.SetRune(1, 0, 'e')
@@ -23,5 +23,7 @@ func run (application *stone.Application) {
application.SetRune(4, 4, ':')
application.SetRune(5, 4, '3')
}
if !application.Await(0) { break }
}
}