Space Walk board game
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

25 righe
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