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