Alex Nørgaard
2 years ago
No known key found for this signature in database
GPG Key ID: 94D54F6A3604E97
1 changed files with
3 additions and
3 deletions
-
a2s/a2s_protocol.py
|
|
@ -9,14 +9,14 @@ from .byteio import ByteReader |
|
|
|
class A2SProtocol: |
|
|
|
@staticmethod |
|
|
|
def serialize_request(challenge: int) -> bytes: |
|
|
|
raise NotImplemented |
|
|
|
raise NotImplementedError() |
|
|
|
|
|
|
|
@staticmethod |
|
|
|
def validate_response_type(response_type: int) -> bool: |
|
|
|
raise NotImplemented |
|
|
|
raise NotImplementedError() |
|
|
|
|
|
|
|
@staticmethod |
|
|
|
def deserialize_response( |
|
|
|
reader: ByteReader, response_type: int, ping: Optional[float] |
|
|
|
) -> Any: |
|
|
|
raise NotImplemented |
|
|
|
raise NotImplementedError() |
|
|
|