Finish basic ui binding to ruby

This commit is contained in:
2026-05-05 11:53:27 +01:00
parent a51eb903c4
commit 1b15f51e1e
10 changed files with 536 additions and 23 deletions
+1 -1
View File
@@ -7,7 +7,7 @@
#define MAX(x, y) ((x) > (y) ? (x) : (y))
struct Color {
uint8_t r, g, b, a;
uint8_t r, g, b = 0, a = 255;
};
template <typename T>