WWCursorP.h 1.3 KB

123456789101112131415161718192021222324252627282930
  1. #ifndef _WWCursorP_h_INCLUDED_
  2. #define _WWCursorP_h_INCLUDED_
  3. /*****************************************************************************/
  4. /* ここから */
  5. /*****************************************************************************/
  6. #include "WWCursor.h"
  7. /*****************************************************************************/
  8. /* クラスの定義 */
  9. /*****************************************************************************/
  10. typedef struct _WWCursor {
  11. int on; /* 表示/非表示のフラグ */
  12. int x, y; /* カーソル座標 */
  13. int width, height; /* カーソルのサイズ */
  14. int interval; /* 点滅周期 */
  15. WWPalette palette; /* カーソル表示用パレット */
  16. } _WWCursor;
  17. /*****************************************************************************/
  18. /* ここまで */
  19. /*****************************************************************************/
  20. #endif
  21. /*****************************************************************************/
  22. /* End of File. */
  23. /*****************************************************************************/