mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-25 00:52:09 +08:00
19 lines
289 B
Plaintext
19 lines
289 B
Plaintext
![]() |
/**
|
||
|
* @file pixel.cppm
|
||
|
* @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;
|
||
|
}
|