26 行
358 B
C++
26 行
358 B
C++
#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
|