A very impressive direct-to-screen sprites demonstration by Hanski using new graphics functionality developed by him

Dependencies:   PokittoLib

Committer:
Pokitto
Date:
Fri Dec 29 06:06:10 2017 +0000
Revision:
0:8652235f92b9
Initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Pokitto 0:8652235f92b9 1 /**************************************************************************/
Pokitto 0:8652235f92b9 2 /*!
Pokitto 0:8652235f92b9 3 @file My_settings.h
Pokitto 0:8652235f92b9 4 @author XX
Pokitto 0:8652235f92b9 5
Pokitto 0:8652235f92b9 6 @section HOW TO USE My_settings
Pokitto 0:8652235f92b9 7
Pokitto 0:8652235f92b9 8 My_settings can be used to set project settings inside the mbed online IDE
Pokitto 0:8652235f92b9 9 */
Pokitto 0:8652235f92b9 10 /**************************************************************************/
Pokitto 0:8652235f92b9 11
Pokitto 0:8652235f92b9 12 #ifndef MY_SETTINGS_H
Pokitto 0:8652235f92b9 13 #define MY_SETTINGS_H
Pokitto 0:8652235f92b9 14
Pokitto 0:8652235f92b9 15 #define PROJ_HIRES 1 // 1 = high resolution (220x176) , 0 = low resolution fast mode (110x88)
Pokitto 0:8652235f92b9 16 #define PROJ_ENABLE_SOUND 0 // 0 = all sound functions disabled
Pokitto 0:8652235f92b9 17 #define SPRITE_COUNT 4 // The default max sprite count
Pokitto 0:8652235f92b9 18 #define PROJ_USE_FPS_COUNTER // Draw FPS counter on screen
Pokitto 0:8652235f92b9 19
Pokitto 0:8652235f92b9 20 #endif