content browser and textures on entity sprites
This commit is contained in:
23
editor/include/panels/content_browser.hpp
Normal file
23
editor/include/panels/content_browser.hpp
Normal 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
|
||||
Reference in New Issue
Block a user