tools/drawMapTest/main.cpp
author nemo
Sat, 23 Jun 2012 21:37:47 -0400
changeset 7270 93e92e82d5c8
parent 4425 2314bb0c433d
permissions -rw-r--r--
Step 1. Add current hedgehog as top bit of bottom byte.

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}