sliding-puzzle/main.cpp

8 lines
79 B
C++
Raw Normal View History

2020-12-14 14:22:52 -05:00
#include "application.h"
2020-12-13 13:45:52 -05:00
int main()
{
2020-12-14 14:22:52 -05:00
Application game;
2020-12-13 13:45:52 -05:00
game.run();
}