選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

11 行
166 B

  1. from typing import NamedTuple
  2. class Region(NamedTuple):
  3. """Defines a rectangular region of the screen."""
  4. x: int
  5. y: int
  6. width: int
  7. height: int