|
|
|
@ -4,6 +4,7 @@
|
|
|
|
|
#include "console.hpp"
|
|
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
|
|
using namespace MWGui;
|
|
|
|
|
|
|
|
|
@ -95,3 +96,11 @@ void WindowManager::setValue (const std::string& id, const MWMechanics::DynamicS
|
|
|
|
|
stats->setValue (id, value);
|
|
|
|
|
hud->setValue (id, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WindowManager::messageBox (const std::string& message, const std::vector<std::string>& buttons)
|
|
|
|
|
{
|
|
|
|
|
std::cout << "message box: " << message << std::endl;
|
|
|
|
|
|
|
|
|
|
if (!buttons.empty())
|
|
|
|
|
std::cerr << "error: message box buttons not supported" << std::endl;
|
|
|
|
|
}
|
|
|
|
|