Files
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

19 lines
212 B
Python

from __future__ import annotations
from typing import NamedTuple
__all__ = [
"Point",
"Size",
]
class Point(NamedTuple):
x: int
y: int
class Size(NamedTuple):
rows: int
columns: int