Space Walk board game
您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
 
 

26 行
434 B

#ifndef SELECTIONBOX_H
#define SELECTIONBOX_H
#include <string>
#include "window.h"
class SelectionBox : public Window
{
public:
SelectionBox(int height, int width);
void update();
void resize();
unsigned char select(std::string str, std::string *selection);
void printSelection(std::string str, std::string *selection);
private:
bool isNumber(const std::string &s);
int height;
int width;
};
#endif // SELECTIONBOX_H