30 lines
492 B
C
30 lines
492 B
C
|
/*
|
||
|
* File: game.h
|
||
|
* Author: Alexander Zhirov
|
||
|
* Connection with me (telegram messenger): @alexanderzhirov
|
||
|
*
|
||
|
* Created on 2020.06.05
|
||
|
*/
|
||
|
|
||
|
#ifndef client_game
|
||
|
#define client_game
|
||
|
|
||
|
#include "common.h"
|
||
|
#include "menu.h"
|
||
|
#include "single.h"
|
||
|
#include "networkmode.h"
|
||
|
#include "networkcreate.h"
|
||
|
#include "networkjoin.h"
|
||
|
#include "networklist.h"
|
||
|
#include "networkparty.h"
|
||
|
#include "networkgame.h"
|
||
|
#include "networkout.h"
|
||
|
#include "autors.h"
|
||
|
#include "pause.h"
|
||
|
#include "gameover.h"
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|
||
|
|