Skip to content
Snippets Groups Projects
definitions.hpp 287 B
Newer Older
#ifndef _DEFINITIONS_H
#define _DEFINITIONS_H

#include <stdint.h>
#include <string>

const uint8_t WORD_LENGTH = 5;
const uint8_t MAX_GUESSES = 5;
const uint16_t USERNAME_MAX_LENGTH = 100;
const int DEFAULT_PORT = 40000;
const char DEFAULT_IP[] = "127.0.0.1";

#endif // _DEFINITIONS_H