Merge branch 'noggit-shadowlands' of https://gitlab.com/prophecy-rp/noggit-red into noggit-shadowlands

This commit is contained in:
Alister
2021-12-29 13:15:33 +00:00
2 changed files with 6 additions and 0 deletions

View File

@@ -22,6 +22,7 @@
#include <QString>
#include <thread>
#include <chrono>
#include <cassert>
#include <glm/vec3.hpp>
#include "ApplicationProjectReader.h"
@@ -50,6 +51,8 @@ namespace Noggit::Project
return ProjectVersion::WOTLK;
if (projectVersion == "Shadowlands")
return ProjectVersion::SL;
assert(false);
}
static std::string MapToStringVersion(ProjectVersion const& projectVersion)
@@ -58,6 +61,8 @@ namespace Noggit::Project
return std::string("Wrath Of The Lich King");
if(projectVersion == ProjectVersion::SL)
return std::string("Shadowlands");
assert(false);
}
};

View File

@@ -2,6 +2,7 @@
#define NOGGIT_APPLICATION_PROJECT_READER_HPP
#include <filesystem>
#include <optional>
namespace Noggit::Project
{