| 252 | } |
| 253 | |
| 254 | INT Window::CreateMessageBox(LPCWSTR message, LPCWSTR title, UINT type) |
| 255 | { |
| 256 | if(title == nullptr) |
| 257 | return ::MessageBox(hwnd, message, appName.c_str(), type); |
| 258 | else |
| 259 | return ::MessageBox(hwnd, message, title, type); |
| 260 | } |
| 261 | |
| 262 | void Window::Maximize() |
| 263 | { |