Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- /** \file
- * Asteroids simple font.
- */
- #ifndef _asteroids_font_h_
- #define _asteroids_font_h_
-
- #include <stdint.h>
-
- typedef struct
- {
- uint8_t points[8]; // 4 bits x, 4 bits y
- } asteroids_char_t;
-
- #define FONT_UP 0xFE
- #define FONT_LAST 0xFF
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- extern const asteroids_char_t asteroids_font[];
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
|