Files
Nuake-custom/Editor/src/Windows/MapImporterWindow.h
2024-07-28 17:09:28 -04:00

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);
};