- Allow server admins to use DELEGATE even when not room owner
- Show number of clients per version table on /stats command
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}