mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-25 09:01:11 +08:00
18 lines
573 B
Plaintext
18 lines
573 B
Plaintext
![]() |
/**
|
||
|
* @file component.cppm
|
||
|
* @brief Module file for FTXUI component operations.
|
||
|
*/
|
||
|
|
||
|
export module ftxui.component;
|
||
|
|
||
|
export import ftxui.component.Animation;
|
||
|
export import ftxui.component.CapturedMouse;
|
||
|
export import ftxui.component.Component;
|
||
|
export import ftxui.component.ComponentBase;
|
||
|
export import ftxui.component.ComponentOptions;
|
||
|
export import ftxui.component.Event;
|
||
|
export import ftxui.component.Loop;
|
||
|
export import ftxui.component.Mouse;
|
||
|
export import ftxui.component.Receiver;
|
||
|
export import ftxui.component.ScreenInteractive;
|
||
|
export import ftxui.component.Task;
|