This commit is contained in:
@@ -104,8 +104,22 @@ class IdentifierHistory(_message.Message):
|
||||
paths: _containers.RepeatedCompositeFieldContainer[Path]
|
||||
def __init__(self, ball_identifier: _Optional[int] = ..., paths: _Optional[_Iterable[_Union[Path, _Mapping]]] = ...) -> None: ...
|
||||
|
||||
class KeyBallIdentifiers(_message.Message):
|
||||
__slots__ = ["cue_ball", "object_ball", "target_ball", "contact_sequence"]
|
||||
CUE_BALL_FIELD_NUMBER: _ClassVar[int]
|
||||
OBJECT_BALL_FIELD_NUMBER: _ClassVar[int]
|
||||
TARGET_BALL_FIELD_NUMBER: _ClassVar[int]
|
||||
CONTACT_SEQUENCE_FIELD_NUMBER: _ClassVar[int]
|
||||
cue_ball: int
|
||||
object_ball: int
|
||||
target_ball: int
|
||||
contact_sequence: _containers.RepeatedScalarFieldContainer[int]
|
||||
def __init__(self, cue_ball: _Optional[int] = ..., object_ball: _Optional[int] = ..., target_ball: _Optional[int] = ..., contact_sequence: _Optional[_Iterable[int]] = ...) -> None: ...
|
||||
|
||||
class Shot(_message.Message):
|
||||
__slots__ = ["identifier_histories"]
|
||||
__slots__ = ["identifier_histories", "key_balls"]
|
||||
IDENTIFIER_HISTORIES_FIELD_NUMBER: _ClassVar[int]
|
||||
KEY_BALLS_FIELD_NUMBER: _ClassVar[int]
|
||||
identifier_histories: _containers.RepeatedCompositeFieldContainer[IdentifierHistory]
|
||||
def __init__(self, identifier_histories: _Optional[_Iterable[_Union[IdentifierHistory, _Mapping]]] = ...) -> None: ...
|
||||
key_balls: KeyBallIdentifiers
|
||||
def __init__(self, identifier_histories: _Optional[_Iterable[_Union[IdentifierHistory, _Mapping]]] = ..., key_balls: _Optional[_Union[KeyBallIdentifiers, _Mapping]] = ...) -> None: ...
|
||||
|
Reference in New Issue
Block a user