lumagrid/simulator/color.py
2024-12-16 16:08:38 +01:00

9 lines
151 B
Python

#!/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