/*****************************************************************************/
/* Character class for WonderWitch                                           */
/* キャラクターを扱うクラス                                                  */
/* WonderWitch の「スプライト」は，"Character" と呼ぶので注意．              */
/* WonderWitch の「キャラクタ」は，"Picture" と呼ぶので注意．                */
/*****************************************************************************/

#ifndef _CharacterP_h_INCLUDED_
#define _CharacterP_h_INCLUDED_

#include "chara.h"

typedef struct _Character {
  Disp disp;
  Picture picture;
  int number; /* スプライト番号 */
  int x, y; /* 座標 */
  unsigned short int char_data;
} _Character;

#endif /* _CharacterP_h_INCLUDED_ */

/*****************************************************************************/
/* End of File.                                                              */
/*****************************************************************************/
