~amaurycarvalho/nmsxtiles/trunk

« back to all changes in this revision

Viewing changes to main.cpp

  • Committer: Amaury Carvalho
  • Date: 2020-03-19 21:21:28 UTC
  • Revision ID: amauryspires@gmail.com-20200319212128-mpz9vo6xqm83vuxf
Commit on 19/03/2020 06:21:28  -03 by amaury

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "mainwindow.h"
 
2
#include <QApplication>
 
3
int main(int argc, char *argv[]) {
 
4
    QApplication a(argc, argv);
 
5
    MainWindow w;
 
6
    w.show();
 
7
    return a.exec();
 
8
}