Initial commit

This commit is contained in:
2026-01-09 15:08:46 +01:00
commit 1faf742c6a
11 changed files with 547 additions and 0 deletions

11
color.pde Normal file
View File

@@ -0,0 +1,11 @@
class Rgb{
int r;
int b;
int g;
Rgb(int r, int g, int b) {
this.r = r;
this.g = g;
this.b = b;
}
}