mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 20:19:56 +00:00
21 lines
402 B
C++
21 lines
402 B
C++
//
|
|
// Created by koncord on 07.01.17.
|
|
//
|
|
|
|
#ifndef NEWLAUNCHER_SERVERINFODIALOG_HPP
|
|
#define NEWLAUNCHER_SERVERINFODIALOG_HPP
|
|
|
|
#include "ui_ServerInfo.h"
|
|
|
|
class ServerInfoDialog : public QDialog, public Ui::Dialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ServerInfoDialog(QWidget *parent = 0);
|
|
virtual ~ServerInfoDialog();
|
|
public slots:
|
|
void refresh();
|
|
};
|
|
|
|
|
|
#endif //NEWLAUNCHER_SERVERINFODIALOG_HPP
|