VoidArchive/Interface.h
2025-09-23 01:31:59 +02:00

14 lines
228 B
C++

#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&);
};