WWCharacterP.h 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. #ifndef _WWCharacterP_h_INCLUDED_
  2. #define _WWCharacterP_h_INCLUDED_
  3. /*****************************************************************************/
  4. /* ここから */
  5. /*****************************************************************************/
  6. #include "WWCharacter.h"
  7. /*****************************************************************************/
  8. /* クラスの定義 */
  9. /*****************************************************************************/
  10. typedef struct _WWCharacter {
  11. int number;
  12. /* キャラクタのビットマップ */
  13. union {
  14. unsigned char bitmap_char[32];
  15. unsigned short int bitmap_short_int[16];
  16. unsigned long int bitmap_long_int[8];
  17. } bitmap;
  18. } _WWCharacter;
  19. /*****************************************************************************/
  20. /* ここまで */
  21. /*****************************************************************************/
  22. #endif
  23. /*****************************************************************************/
  24. /* End of File. */
  25. /*****************************************************************************/