mirror of
https://github.com/Xevion/v6-place.git
synced 2025-12-13 18:13:33 -06:00
Basic network functions & typing
This commit is contained in:
6
pixel_types.py
Normal file
6
pixel_types.py
Normal 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]
|
||||
Reference in New Issue
Block a user