From 00f84e3b984904e36cbee502a470003ecd7d09cf Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 10 Aug 2024 10:46:54 -0400 Subject: initial upload --- ui/label.hpp | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 ui/label.hpp (limited to 'ui/label.hpp') diff --git a/ui/label.hpp b/ui/label.hpp new file mode 100644 index 0000000..9524007 --- /dev/null +++ b/ui/label.hpp @@ -0,0 +1,32 @@ +#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 +struct label +{ + static constexpr auto point = find(Attr...); + static constexpr auto text = find(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 + -- cgit v1.2.3