Refactor Frenzy script
- Use GetAmmoName instead of hardcoding ammo names into strings
- Remove Tracker
- Make texts a bit more translator-friendly
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}