25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /** \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
|