Remove args from main

This commit is contained in:
Patricia Aas 2021-06-22 10:32:19 +02:00 committed by Patricia Aas
parent 9ca1f6f12d
commit fc657801f0
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#include "Game.hpp"
int main(int, char**) {
int main() {
Game game;
game.run();
return 0;