mirror of https://github.com/bsnes-emu/bsnes.git
19 lines
332 B
C++
Executable File
19 lines
332 B
C++
Executable File
struct WindowManager {
|
|
struct WindowList {
|
|
Window *window;
|
|
string name;
|
|
string geometry;
|
|
};
|
|
vector<WindowList> windowList;
|
|
|
|
void append(Window *window, const string &name);
|
|
void loadGeometry();
|
|
void saveGeometry();
|
|
void hideAll();
|
|
|
|
private:
|
|
configuration config;
|
|
};
|
|
|
|
extern WindowManager *windowManager;
|