made column span redundant

This commit is contained in:
itsmattkc
2019-04-11 01:40:37 +10:00
parent d3bc1d4f06
commit e73011e192
7 changed files with 39 additions and 24 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef NODEGRAPH_H
#define NODEGRAPH_H
#include "effects/effect.h"
class NodeGraph
{
public:
NodeGraph();
private:
Effect* end_node_;
};
#endif // NODEGRAPH_H