WWTextP.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #ifndef _WWTextP_h_INCLUDED_
  2. #define _WWTextP_h_INCLUDED_
  3. /*****************************************************************************/
  4. /* ここから */
  5. /*****************************************************************************/
  6. #include "WWText.h"
  7. #include "WWCharacter.h"
  8. /*****************************************************************************/
  9. /* クラスの定義 */
  10. /*****************************************************************************/
  11. typedef struct _WWText {
  12. /* テキストの描画情報 */
  13. WWScreen screen; /* テキストスクリーン */
  14. int x, y, width, height; /* テキストウインドウの領域 */
  15. int base; /* 使用するキャラクタのベース */
  16. WWPalette palette;
  17. WWCharacter font[128]; /* フォント */
  18. } _WWText;
  19. /*****************************************************************************/
  20. /* ここまで */
  21. /*****************************************************************************/
  22. #endif
  23. /*****************************************************************************/
  24. /* End of File. */
  25. /*****************************************************************************/