Space Walk board game
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

25 行
358 B

#ifndef INFOWINDOW_H
#define INFOWINDOW_H
#include "window.h"
class Player;
class SpaceShip;
class InfoWindow : public Window
{
public:
InfoWindow(int height, int width, Player **player, SpaceShip **ship);
~InfoWindow();
void update();
void resize();
private:
int height;
int width;
Player **player;
SpaceShip **ship;
};
#endif // INFOWINDOW_H