Files
Claude Project Manager 6b9b6d4f20 Initial commit
2025-09-20 21:31:04 +02:00

11 Zeilen
166 B
Python

from typing import NamedTuple
class Region(NamedTuple):
"""Defines a rectangular region of the screen."""
x: int
y: int
width: int
height: int