/*****************************************************************************/
/* Picture class for WonderWitch                                             */
/* 画像を扱うクラス                                                          */
/*****************************************************************************/

#ifndef _PictureP_h_INCLUDED_
#define _PictureP_h_INCLUDED_

#include "picture.h"

typedef struct _Picture {
  Disp disp;
  int number; /* キャラクタ番号 */
  int width, height; /* 画像の大きさ */
} _Picture;

#endif /* _PictureP_h_INCLUDED_ */

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