Files
OpenEngine/editor/include/panels/content_browser.hpp
2026-03-01 17:06:15 +01:00

26 lines
446 B
C++

#ifndef CONTENT_BROWSER_HPP
#define CONTENT_BROWSER_HPP
#include "open_engine/renderer/texture.hpp"
#include <filesystem>
namespace OpenEngine {
class EditorLayer;
class ContentBrowserPanel
{
public:
ContentBrowserPanel();
void OnImGuiRender();
private:
std::filesystem::path current_directory;
Ref<Texture2D> folder_icon;
};
}
#endif // CONTENT_BROWSER_HPP