Aluode/PerceptionLabPortable
0
1from typing import NamedTuple2 3 4class Region(NamedTuple):5 """Defines a rectangular region of the screen."""6 7 x: int8 y: int9 width: int10 height: int11 1from typing import NamedTuple2 3 4class Region(NamedTuple):5 """Defines a rectangular region of the screen."""6 7 x: int8 y: int9 width: int10 height: int11