50 lines
935 B
C++
50 lines
935 B
C++
// Copyright (C) 2015 Jérôme Leclercq
|
|
// This file is part of the "Nazara Development Kit"
|
|
// For conditions of distribution and use, see copyright notice in Prerequesites.hpp
|
|
|
|
#include <Nazara/Core/Error.hpp>
|
|
#include "Console.hpp"
|
|
|
|
namespace Ndk
|
|
{
|
|
inline unsigned int Console::GetCharacterSize() const
|
|
{
|
|
return m_characterSize;
|
|
}
|
|
|
|
inline const EntityHandle& Console::GetHistory() const
|
|
{
|
|
return m_history;
|
|
}
|
|
|
|
inline const EntityHandle& Console::GetHistoryBackground() const
|
|
{
|
|
return m_historyBackground;
|
|
}
|
|
|
|
inline const EntityHandle& Console::GetInput() const
|
|
{
|
|
return m_input;
|
|
}
|
|
|
|
inline const EntityHandle& Console::GetInputBackground() const
|
|
{
|
|
return m_inputBackground;
|
|
}
|
|
|
|
inline const Nz::Vector2f& Console::GetSize() const
|
|
{
|
|
return m_size;
|
|
}
|
|
|
|
inline const Nz::FontRef& Console::GetTextFont() const
|
|
{
|
|
return m_defaultFont;
|
|
}
|
|
|
|
inline bool Console::IsVisible() const
|
|
{
|
|
return m_opened;
|
|
}
|
|
}
|