GUI is now decoupled from the ECS using the new DinkyECS event queues. That makes it easier to update and change the GUI without having to constantly alter the systems.
This commit is contained in:
parent
da8011cb14
commit
04350cb51e
4 changed files with 58 additions and 16 deletions
|
@ -4,6 +4,13 @@ NOTES:
|
|||
* src/ftxui/screen/color.cpp
|
||||
* Just search for ugrep x1B
|
||||
* https://man7.org/linux/man-pages/man4/console_codes.4.html
|
||||
* amit note:
|
||||
|
||||
Struct A {
|
||||
int data;
|
||||
template <typename T> A(T t) : data(static_cast<int>(t)) {}
|
||||
};
|
||||
A a(my_enum);
|
||||
|
||||
TODO:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue