aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
blob: 153019b033ac6e7717b41034c9da19474ac04ffd (plain)
1
2
3
4
5
6
use tetris::Game;

fn main() {
    let mut game = Game::new();
    game.game_loop()
}