23 lines
446 B
C++
23 lines
446 B
C++
#pragma once
|
|
|
|
#include <src/Core/FileSystem.h>
|
|
#include <src/Core/FileSystem.h>
|
|
|
|
class MapImporterWindow
|
|
{
|
|
public:
|
|
MapImporterWindow() = default;
|
|
~MapImporterWindow() = default;
|
|
|
|
void Update();
|
|
void Draw();
|
|
|
|
private:
|
|
Ref<Nuake::File> m_MapToImport = nullptr;
|
|
std::vector<std::string> m_DetectedWads;
|
|
std::string m_OutputFile = "";
|
|
std::vector<std::string> ScanUsedWads();
|
|
|
|
std::string GetTransformedWadPath(const std::string& path);
|
|
|
|
}; |