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