26 lines
543 B
C++
26 lines
543 B
C++
/*
|
|
* =====================================================================================
|
|
*
|
|
* Filename: Config.hpp
|
|
*
|
|
* Description:
|
|
*
|
|
* Created: 14/12/2014 13:45:14
|
|
*
|
|
* Author: Quentin Bazin, <quent42340@gmail.com>
|
|
*
|
|
* =====================================================================================
|
|
*/
|
|
#ifndef CONFIG_HPP_
|
|
#define CONFIG_HPP_
|
|
|
|
#define SCREEN_WIDTH 1600
|
|
#define SCREEN_HEIGHT 1050
|
|
|
|
#define APP_NAME "KubKraft"
|
|
|
|
#define DIST_NEAR 0.1f
|
|
#define DIST_FAR 1000.0f
|
|
|
|
#endif // CONFIG_HPP_
|