判断是否已连接 / Check if connected Returns: bool: 是否已连接 / Whether connected
(self)
| 393 | |
| 394 | @property |
| 395 | def connected(self) -> bool: |
| 396 | """判断是否已连接 / Check if connected |
| 397 | |
| 398 | Returns: |
| 399 | bool: 是否已连接 / Whether connected |
| 400 | """ |
| 401 | return bool(Library.framework().MaaControllerConnected(self._handle)) |
| 402 | |
| 403 | @property |
| 404 | def uuid(self) -> str: |