Dodaj pliki projektów.

This commit is contained in:
yanczi 2025-09-23 01:31:59 +02:00
parent 4912ed6774
commit f6150b0d17
18 changed files with 9210 additions and 0 deletions

14
Interface.h Normal file
View file

@ -0,0 +1,14 @@
#pragma once
#include <ftxui/dom/elements.hpp>
#include <ftxui/screen/screen.hpp>
#include <string>
class Interface {
public:
Interface();
virtual ~Interface();
void TextBorder(const std::string&, const std::string&);
};