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