more
This commit is contained in:
parent
c46ef255a1
commit
1baa188067
7 changed files with 29 additions and 0 deletions
|
@ -43,6 +43,9 @@ HEADERS += src/counter.h \
|
|||
src/chatwidget.h \
|
||||
src/gamescene.h \
|
||||
src/arrowitem.h \
|
||||
src/tab_server.h \
|
||||
src/tab_chatchannel.h \
|
||||
src/tab_game.h \
|
||||
../common/protocol.h \
|
||||
../common/protocol_items.h \
|
||||
../common/protocol_datastructures.h
|
||||
|
@ -84,6 +87,9 @@ SOURCES += src/counter.cpp \
|
|||
src/chatwidget.cpp \
|
||||
src/gamescene.cpp \
|
||||
src/arrowitem.cpp \
|
||||
src/tab_server.cpp \
|
||||
src/tab_chatchannel.cpp \
|
||||
src/tab_game.cpp \
|
||||
../common/protocol.cpp \
|
||||
../common/protocol_items.cpp
|
||||
|
||||
|
|
1
cockatrice/src/tab_chatchannel.cpp
Normal file
1
cockatrice/src/tab_chatchannel.cpp
Normal file
|
@ -0,0 +1 @@
|
|||
|
1
cockatrice/src/tab_chatchannel.h
Normal file
1
cockatrice/src/tab_chatchannel.h
Normal file
|
@ -0,0 +1 @@
|
|||
|
1
cockatrice/src/tab_game.cpp
Normal file
1
cockatrice/src/tab_game.cpp
Normal file
|
@ -0,0 +1 @@
|
|||
|
1
cockatrice/src/tab_game.h
Normal file
1
cockatrice/src/tab_game.h
Normal file
|
@ -0,0 +1 @@
|
|||
|
6
cockatrice/src/tab_server.cpp
Normal file
6
cockatrice/src/tab_server.cpp
Normal file
|
@ -0,0 +1,6 @@
|
|||
#include "tab_server.h"
|
||||
|
||||
TabServer::TabServer(QWidget *parent)
|
||||
: QWidget(parent)
|
||||
{
|
||||
}
|
13
cockatrice/src/tab_server.h
Normal file
13
cockatrice/src/tab_server.h
Normal file
|
@ -0,0 +1,13 @@
|
|||
#ifndef TAB_SERVER_H
|
||||
#define TAB_SERVER_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
class TabServer : public QWidget {
|
||||
Q_OBJECT
|
||||
private:
|
||||
public:
|
||||
TabServer(QWidget *parent = 0);
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Reference in a new issue