11 lines
204 B
C
11 lines
204 B
C
|
#pragma once
|
||
|
#ifndef NET_CONST_H
|
||
|
#define NET_CONST_H
|
||
|
//const int PLAYER_WAIT_COUNT = 1;
|
||
|
const int PLAYER_MAX_COUNT = 8;
|
||
|
const float LOBBY_WAIT_TIME = 4;
|
||
|
/*namespace Network
|
||
|
{
|
||
|
void LoadData(){}
|
||
|
}*/
|
||
|
#endif
|