From f658b27f7f56fdeaaa1ca7ee8a9bf6aa6eea5d43 Mon Sep 17 00:00:00 2001 From: itssme Date: Fri, 1 Oct 2021 01:51:53 +0100 Subject: [PATCH] Update documentation --- lib/Api.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Api.html b/lib/Api.html index 569849a..d5acb2a 100644 --- a/lib/Api.html +++ b/lib/Api.html @@ -206,14 +206,14 @@
-static get_meteoroid() Tuple[Dict, int]
+static get_meteoroid() Tuple[List[Dict], int]

Makes the /api/getMeteoroid call to the api.

Returns
-

A dictionary with all scores included like: {“self”:2,”opponent”:0}

+

A list will all meteoroids currently on the game field. Meteoroids are dictionaries that look like: {“x”: 0, “y”: 0}

Return type
-

Tuple[Dict, int]

+

Tuple[List[Dict], int]