Initial commit

This commit is contained in:
David Skoland 2016-12-29 01:45:42 +01:00
commit 37c9d0a9d3
4 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#-------------------------------------------------
#
# Project created by QtCreator 2016-12-29T01:14:46
#
#-------------------------------------------------
QT += core gui multimedia network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Attorney_Online_remake
TEMPLATE = app
SOURCES += main.cpp\
lobby.cpp
HEADERS += lobby.h

11
lobby.cpp Normal file
View File

@ -0,0 +1,11 @@
#include "lobby.h"
Lobby::Lobby(QWidget *parent) : QMainWindow(parent)
{
//this->resize();
}
Lobby::~Lobby()
{
}

15
lobby.h Normal file
View File

@ -0,0 +1,15 @@
#ifndef LOBBY_H
#define LOBBY_H
#include <QMainWindow>
class Lobby : public QMainWindow
{
Q_OBJECT
public:
Lobby(QWidget *parent = nullptr);
~Lobby();
};
#endif // LOBBY_H

12
main.cpp Normal file
View File

@ -0,0 +1,12 @@
#include <QApplication>
#include "lobby.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Lobby w;
w.show();
return a.exec();
}