Files
2024-08-31 12:07:21 +03:00

11 lines
158 B
C++

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