content browser and textures on entity sprites

This commit is contained in:
Erris
2026-02-27 10:45:44 +01:00
parent cee0f42164
commit 9de9609dee
23 changed files with 809 additions and 213 deletions

View File

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