package main // IRenderer provides primitives to render blocks and score statistics type Renderer interface { Draw(x, y int, color string) Score(score, lines int) GameOver() }