| 10 | static Color3i Orange() { return Color3i(0xff, 0xff / 2,00); } |
| 11 | static Color3i Yellow() { return Color3i(0xff, 0xff,00); } |
| 12 | static Color3i Green() { return Color3i(0x00, 0xff, 0x00); } |
| 13 | static Color3i Cyan() { return Color3i(0x00, 0xff, 0xff); } |
| 14 | static Color3i Blue() { return Color3i(0x00, 0x00, 0xff); } |
| 15 | Color3i(uint8_t r, uint8_t g, uint8_t b) { Set(r,g,b); } |