mirror of
https://github.com/QuasarApp/Heart.git
synced 2025-05-08 15:39:42 +00:00
11 lines
205 B
C
11 lines
205 B
C
|
#ifndef CONFIG_H
|
||
|
#define CONFIG_H
|
||
|
|
||
|
#define LOCAL_SNAKE_SERVER "127.0.0.1"
|
||
|
|
||
|
#define DEFAULT_SNAKE_PORT 7777
|
||
|
#define MAX_SIZE 100
|
||
|
#define MIN_SIZE 1
|
||
|
|
||
|
#endif // CONFIG_H
|