Files
School/Anul 1/Semestrul 2/Graph Algo/Labs/Lab 1/DirectedGraph/ui.h
T
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();
};