diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-08-10 10:50:47 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-08-10 10:50:47 -0400 |
commit | cd96a31b3ea11edf26512c33ca599258601c31a0 (patch) | |
tree | d5cfbb9b3c936f36a4d30f9b8024e3ef7e27bcd7 /ui/label.hpp | |
parent | 00f84e3b984904e36cbee502a470003ecd7d09cf (diff) |
move library to a folder
Diffstat (limited to 'ui/label.hpp')
-rw-r--r-- | ui/label.hpp | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/ui/label.hpp b/ui/label.hpp deleted file mode 100644 index 9524007..0000000 --- a/ui/label.hpp +++ /dev/null @@ -1,32 +0,0 @@ -#ifndef MBUOY_UI_LABEL_HPP -#define MBUOY_UI_LABEL_HPP - -#include "attr/position.hpp" -#include "attr/string.hpp" -#include "find.hpp" -#include "port.hpp" - -namespace mbuoy { - -template<auto... Attr> -struct label -{ - static constexpr auto point = find<position>(Attr...); - static constexpr auto text = find<const char *>(Attr...); - - static consteval void init(unsigned char *(&ptr)) { - } - - static void render() { - port::puts(point->x, point->y, *text); - } - - static consteval int size() { - return 0; - } -}; - -} // namespace mbuoy - -#endif // MBUOY_UI_LABEL_HPP - |