This repository has been archived on 2024-09-30. You can view files and clone it, but cannot push or open issues/pull-requests.
|
from typing import NamedTuple
|
|
|
|
|
|
class Region(NamedTuple):
|
|
"""Defines a rectangular region of the screen."""
|
|
|
|
x: int
|
|
y: int
|
|
width: int
|
|
height: int
|