2014-12-15 16:47:30 +01:00
|
|
|
/*
|
|
|
|
* =====================================================================================
|
|
|
|
*
|
|
|
|
* Filename: Config.hpp
|
|
|
|
*
|
2018-06-05 01:24:54 +02:00
|
|
|
* Description:
|
2014-12-15 16:47:30 +01:00
|
|
|
*
|
|
|
|
* Created: 14/12/2014 13:45:14
|
|
|
|
*
|
2018-06-14 03:19:35 +02:00
|
|
|
* Author: Quentin Bazin, <quent42340@gmail.com>
|
2014-12-15 16:47:30 +01:00
|
|
|
*
|
|
|
|
* =====================================================================================
|
|
|
|
*/
|
|
|
|
#ifndef CONFIG_HPP_
|
|
|
|
#define CONFIG_HPP_
|
|
|
|
|
2018-06-05 01:47:15 +02:00
|
|
|
#define SCREEN_WIDTH 1600
|
|
|
|
#define SCREEN_HEIGHT 1050
|
2014-12-15 16:47:30 +01:00
|
|
|
|
2014-12-20 16:22:52 +01:00
|
|
|
#define APP_NAME "KubKraft"
|
2014-12-15 16:47:30 +01:00
|
|
|
|
2018-06-13 03:47:20 +02:00
|
|
|
#define DIST_NEAR 0.1f
|
|
|
|
#define DIST_FAR 1000.0f
|
|
|
|
|
2014-12-15 16:47:30 +01:00
|
|
|
#endif // CONFIG_HPP_
|