#pragma once #include "directed_graph.h" class UI{ private: DirectedGraph _graph; public: UI(); ~UI(); void run(); };