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.
15 lines
314 B
15 lines
314 B
//defaults.h: default settings
|
|
|
|
#ifndef _DEFAULTS_H_
|
|
#define _DEFAULTS_H_
|
|
|
|
#define DEFAULT_RES_WIDTH 800
|
|
#define DEFAULT_RES_HEIGHT 600
|
|
|
|
//Bounds on min/max client width/height
|
|
#define MIN_CLIENT_SIZE 200
|
|
#define MAX_CLIENT_WIDTH 1600
|
|
#define MAX_CLIENT_HEIGHT 1200
|
|
|
|
|
|
#endif //_DEFAULTS_H_
|