Space Walk board game
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

17 satır
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