mirror of
https://github.com/Xevion/v6-place.git
synced 2025-12-05 23:16:48 -06:00
6 lines
149 B
Python
6 lines
149 B
Python
from typing import Tuple
|
|
|
|
RGB = Tuple[int, int, int]
|
|
Pixel = Tuple[int, int, RGB]
|
|
RGBA = Tuple[int, int, int, int]
|
|
AlphaPixel = Tuple[int, int, RGBA] |