#ifndef __CONFIG_H__
#define __CONFIG_H__ 1

//all config constants go here,
//anything in here should not exist and should be moved
//into a runtime config file

#define WINDOW_WIDTH  1024
#define WINDOW_HEIGHT 480
#define WINDOW_DEPTH  32
#define WINDOW_TITLE  "Gentic Funball"
#define WORKER_THREADS 4
#endif
