vectozavr-shooter/engine/network/config.h

16 lines
303 B
C++

//
// Created by Иван Ильин on 05.04.2021.
//
#ifndef ENGINE_CONFIG_H
#define ENGINE_CONFIG_H
namespace Network {
const unsigned VERSION = 1U;
const int TIMEOUT = 1U;
const int WORLD_UPDATE_RATE = 30;
const double RELIABLE_RETRY_TIME = 1.0/20;
}
#endif //INC_3DZAVR_CONFIG_H