OOP_zadanie5/Main.cpp

11 lines
152 B
C++

#pragma once
#include "UserInteraction.h"
int main() {
UserInteraction userInteraction;
userInteraction.execute();
system("pause");
return 0;
};