/****************************************************************************** * File - worldTree.h * Author - Joey Pollack * Date - 2021/11/04 (y/m/d) * Mod Date - 2021/11/04 (y/m/d) * Description - The tree view listing all objects in the world ******************************************************************************/ #ifndef WORLD_TREE_H_ #define WORLD_TREE_H_ #include "iPanel.h" namespace lunarium { namespace editor { class World; class WorldTree : public Panel { public: WorldTree(); void SetWorld(World* pWorld); World* GetWorld(); bool DoFrame(); private: World* mpWorld; }; } } #endif // WORLD_TREE_H_