#pragma once #include #include #include namespace UI { struct AssetItem { std::string name; std::string type; bool isFolder; std::string fullPath; std::vector> children; }; using AssetItemPtr = std::shared_ptr; }