You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SQA-Homework/gcov&lcov/server.h

28 lines
482 B

// constants only for server
#ifndef SERVER_H
#define SERVER_H
static int INIT_BULLETS = 12;
static int MAX_BULLETS = 480;
static int BULLETS_PER_MAGAZINE = 12;
static int INIT_LIFE = 5;
static int MAX_LIFE = 20;
static int LIFE_PER_VIAL = 5;
#define INIT_GRASS 5
#define MAGMA_INIT_TIMES 3
#define MAX_OTHER 20
static int BULLETS_LASTS_TIME = 100;
static int OTHER_ITEM_LASTS_TIME = 1000;
#define GLOBAL_SPEED 20
#define BULLET_SPEED 2
#define ADMIN_COMMAND_LEN 32
#endif