tui_editor.hpp 213 B

1234567891011
  1. #pragma once
  2. #include "lumacs/ui_interface.hpp"
  3. #include <memory>
  4. namespace lumacs {
  5. // Factory function to create a TUI editor instance
  6. std::unique_ptr<IEditorView> create_tui_editor();
  7. } // namespace lumacs