27 lines
588 B
C++
27 lines
588 B
C++
/*
|
|
* =====================================================================================
|
|
*
|
|
* Filename: Config.hpp
|
|
*
|
|
* Description:
|
|
*
|
|
* Version: 1.0
|
|
* Created: 14/12/2014 13:45:14
|
|
* Revision: none
|
|
* Compiler: gcc
|
|
*
|
|
* Author: Quentin BAZIN, <quent42340@gmail.com>
|
|
* Company:
|
|
*
|
|
* =====================================================================================
|
|
*/
|
|
#ifndef CONFIG_HPP_
|
|
#define CONFIG_HPP_
|
|
|
|
#define SCREEN_WIDTH 640
|
|
#define SCREEN_HEIGHT 480
|
|
|
|
#define APP_NAME "KubKraft"
|
|
|
|
#endif // CONFIG_HPP_
|