Hats webpage: Many improvements and fixes (2nd try)
* Fix static hats not being animated properly
* Make widges more user-friendly
* Add local mode to hats webpage to make testing easier (IS_LOCAL variable)
* Cleanup code
* Update themes list
* Update list of local hats
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}