Engine:
* Fixed sometimes broken drawing of static graves (clamping issue?)
* Removed the (now obsolete) DrawSurfSprite from uStore
#include <QtGui/QApplication>
#include "editor.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
editor w;
w.show();
return a.exec();
}