Вы не можете выбрать более 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