wonx/WWScreenP.h
Hiroaki Sakai 3c624a304e Initial version
Version 0.0.1 alpha - from wonx-a01.tar.gz
2000-09-26 12:00:00 +09:00

42 lines
1.5 KiB
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef _WWScreenP_h_INCLUDED_
#define _WWScreenP_h_INCLUDED_
/*****************************************************************************/
/* ここから */
/*****************************************************************************/
#include "WWScreen.h"
/*****************************************************************************/
/* クラスの定義 */
/*****************************************************************************/
/* スクリーンのマス目ごとに決まる,表示情報 */
typedef struct _WWScreenCharacter {
int horizontal; /* 横方向反転フラグ */
int vertical; /* 縦方向反転フラグ */
WWPalette palette; /* パレット番号015 のパレット番号 */
WWCharacter character; /* 表示キャラクタ */
} _WWScreenCharacter;
typedef struct _WWScreenCharacter * WWScreenCharacter;
typedef struct _WWScreen {
int number;
int width;
int height;
int roll_x;
int roll_y;
WWScreenCharacter * screen_characters;
} _WWScreen;
/*****************************************************************************/
/* ここまで */
/*****************************************************************************/
#endif
/*****************************************************************************/
/* End of File. */
/*****************************************************************************/