lumagrid/simulator/color.py

9 lines
151 B
Python
Raw Normal View History

2024-12-16 16:08:38 +01:00
#!/usr/bin/env python3
class Color:
def __init__(self, r: int, g: int, b: int) -> None:
self.r = r
self.g = g
self.b = b