1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-15 17:09:46 +00:00
openmw-tes3mp/apps/openmw/mwgui/guimanager.cpp
2010-07-07 18:48:06 +02:00

67 lines
1.2 KiB
C++

#include "guimanager.hpp"
#include <iostream>
namespace MWGui
{
void GuiManager::showBirthDialogue()
{
std::cout << "" << std::endl;
}
void GuiManager::showClassDialogue()
{
std::cout << "" << std::endl;
}
void GuiManager::showNameDialogue()
{
std::cout << "" << std::endl;
}
void GuiManager::showRaceDialogue()
{
std::cout << "" << std::endl;
}
void GuiManager::showReviewDialogue()
{
std::cout << "" << std::endl;
}
void GuiManager::enableInventoryWindow()
{
std::cout << "" << std::endl;
}
void GuiManager::enableMagicWindow()
{
std::cout << "" << std::endl;
}
void GuiManager::enableMapWindow()
{
std::cout << "" << std::endl;
}
void GuiManager::enableStatsMenu()
{
std::cout << "" << std::endl;
}
void GuiManager::enableLevelUpDialogue()
{
std::cout << "" << std::endl;
}
void GuiManager::showRestDialogue()
{
std::cout << "" << std::endl;
}
bool GuiManager::isGuiActive() const
{
return false;
}
}