mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-26 01:21:12 +08:00
18 lines
297 B
C++
18 lines
297 B
C++
/**
|
|
* @file Mouse.cppm
|
|
* @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;
|
|
} |