sc2_datasets.replay_parser.game_events.game_event ================================================= .. py:module:: sc2_datasets.replay_parser.game_events.game_event Classes ------- .. autoapisummary:: sc2_datasets.replay_parser.game_events.game_event.GameEvent Module Contents --------------- .. py:class:: GameEvent .. py:method:: __subclasshook__(subclass: type) -> Literal[True] | types.NotImplementedType :classmethod: .. py:method:: from_dict() -> GameEvent :abstractmethod: Abstract method that returns a GameEvent object. This method aids in implementation, specifically in the context of parsing original JSON data. :param d: A dictionary obtained from pre-processing an .SC2Replay file, available in the JSON format. :type d: Dict :raises NotImplementedError: If the method remains unimplemented, this error is raised. :returns: A method sheet that must be implemented. :rtype: GameEvent