Space Walk board game
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

17 строки
250 B

#ifndef MESSAGEBOX_H
#define MESSAGEBOX_H
#include <string>
#include "window.h"
class MessageBox : public Window
{
public:
MessageBox(std::string message);
MessageBox(std::string message, std::string title);
private:
};
#endif // MESSAGEBOX_H