mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-15 17:09:46 +00:00
67 lines
1.2 KiB
C++
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;
|
|
}
|
|
}
|