Basic network functions & typing

This commit is contained in:
2023-03-10 19:27:56 -06:00
parent 575f635c97
commit 206be949a6
2 changed files with 46 additions and 0 deletions

6
pixel_types.py Normal file
View File

@@ -0,0 +1,6 @@
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]