You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
693 B
C++
34 lines
693 B
C++
/******************************************************************************
|
|
* 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_
|