選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

28 行
366B

  1. /** \file
  2. * Asteroids simple font.
  3. */
  4. #ifndef _asteroids_font_h_
  5. #define _asteroids_font_h_
  6. #include <stdint.h>
  7. typedef struct
  8. {
  9. uint8_t points[8]; // 4 bits x, 4 bits y
  10. } asteroids_char_t;
  11. #define FONT_UP 0xFE
  12. #define FONT_LAST 0xFF
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. extern const asteroids_char_t asteroids_font[];
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20. #endif