2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-04 09:15:51 +00:00

Move Node to Outliner class

This commit is contained in:
Zero-One101 2016-02-26 20:25:34 +00:00
parent aa0ae06532
commit 4197cd69dc

View File

@ -3,8 +3,10 @@
namespace Specter
{
class Node : public View
class Outliner
{
class Node : public View
{
struct INodeController
{
virtual boo::ITexture* icon() const { return nullptr; }
@ -19,7 +21,7 @@ class Node : public View
bool m_collapsible;
bool m_collapsed;
public:
public:
class Resources
{
friend class ViewResources;
@ -35,6 +37,7 @@ public:
void resized(const boo::SWindowRect& root, const boo::SWindowRect& sub);
void draw(boo::IGraphicsCommandQueue* gfxQ);
void think();
};
};
}