Implement screen clear.

This commit is contained in:
2023-04-02 00:02:25 -07:00
parent 34e1f3166f
commit c73545fd07

View File

@ -119,3 +119,7 @@ func pickNextAction[C StatsCollection](p *Player[C]) (isCard bool, cardIdx int,
}
return pickNextAction(p)
}
func cls() {
fmt.Println("\033[H\033[2J")
}