You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
553 B
C++
25 lines
553 B
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
|
|
#include "EngineInfo.h"
|
|
|
|
namespace O3DE::ProjectManager
|
|
{
|
|
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
|