Removed dead code and empty file

This commit is contained in:
sloumdrone 2019-11-10 14:14:45 -08:00
parent f5c5dcd736
commit 3a33320ec5
2 changed files with 0 additions and 14 deletions

View File

@ -26,19 +26,6 @@ var Shapes = map[string]string{
"abr": "▟",
}
func drawShape(shape string) {
if val, ok := Shapes[shape]; ok {
fmt.Printf("%s", val)
} else {
fmt.Print("x")
}
}
func moveThenDrawShape(r, c int, s string) {
MoveCursorTo(r, c)
drawShape(s)
}
func MoveCursorTo(row, col int) {
fmt.Printf("\033[%d;%dH", row, col)
}

View File

@ -1 +0,0 @@
package cui