tetris/main.cpp

22 lines
211 B
C++
Raw Normal View History

2018-02-05 23:44:42 +00:00
/*
* main.cpp
*
* Created on: May 4, 2013
* Author: chibi_000
*/
#include "Application.h"
#include <iostream>
using namespace std;
int main()
{
Application app;
return app.run();
return 0;
}