mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-09-28 16:29:34 +08:00
17 lines
305 B
C++
17 lines
305 B
C++
/// @module ftxui.component.mouse
|
|
/// @brief Module file for the Mouse struct of the Component module
|
|
|
|
module;
|
|
|
|
#include <ftxui/component/mouse.hpp>
|
|
|
|
export module ftxui.component.mouse;
|
|
|
|
/**
|
|
* @namespace ftxui
|
|
* @brief The FTXUI ftxui:: namespace
|
|
*/
|
|
export namespace ftxui {
|
|
using ftxui::Mouse;
|
|
}
|