implemented CRTP shader on ColorShader and Rectangle

This commit is contained in:
2026-07-20 01:41:10 -07:00
parent b95022de29
commit 444143ced9
9 changed files with 132 additions and 151 deletions
+2
View File
@@ -16,6 +16,8 @@ namespace UwU {
Color c;
Color shade(uint16_t x, uint16_t y) {
(void)x;
(void)y;
return c;
}
};