Engine settings UX update and basic functionality

This commit is contained in:
Alex Peterson
2021-05-21 22:47:41 -07:00
committed by GitHub
parent d20f3d8bd4
commit d112ae403b
25 changed files with 759 additions and 147 deletions
@@ -14,8 +14,16 @@
namespace O3DE::ProjectManager
{
EngineInfo::EngineInfo(const QString& path)
EngineInfo::EngineInfo(const QString& path, const QString& name, const QString& version, const QString& thirdPartyPath)
: m_path(path)
, m_name(name)
, m_version(version)
, m_thirdPartyPath(thirdPartyPath)
{
}
bool EngineInfo::IsValid() const
{
return !m_path.isEmpty();
}
} // namespace O3DE::ProjectManager