ui: graphView
Added basic graph view with simple nodes (just text, no edges or anything...) fortune cookie message = Don't be afraid to take that big step.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#include "component/view/GraphView.h"
|
||||
|
||||
GraphView::GraphView(ViewLayout* viewLayout)
|
||||
: View(viewLayout, Vec2i(100, 100))
|
||||
{
|
||||
}
|
||||
|
||||
GraphView::~GraphView()
|
||||
{
|
||||
}
|
||||
|
||||
std::string GraphView::getName() const
|
||||
{
|
||||
return "GraphView";
|
||||
}
|
||||
Reference in New Issue
Block a user