Initial commit
This commit is contained in:
commit
37c9d0a9d3
18
Attorney_Online_remake.pro
Normal file
18
Attorney_Online_remake.pro
Normal 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
11
lobby.cpp
Normal file
@ -0,0 +1,11 @@
|
||||
#include "lobby.h"
|
||||
|
||||
Lobby::Lobby(QWidget *parent) : QMainWindow(parent)
|
||||
{
|
||||
//this->resize();
|
||||
}
|
||||
|
||||
Lobby::~Lobby()
|
||||
{
|
||||
|
||||
}
|
15
lobby.h
Normal file
15
lobby.h
Normal 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
|
Loading…
Reference in New Issue
Block a user