File tree Expand file tree Collapse file tree 2 files changed +29
-11
lines changed Expand file tree Collapse file tree 2 files changed +29
-11
lines changed Original file line number Diff line number Diff line change @@ -6,42 +6,57 @@ Support Structures
6
6
These dumb data structures help to give meaningful organization and structure to the information in their respective parent resources.
7
7
8
8
9
+ Entity
10
+ ------------------
11
+
12
+ .. autoclass :: Entity
13
+ :members:
14
+
9
15
Player
10
16
------------------
11
17
12
18
.. autoclass :: Player
13
19
:members:
14
20
21
+ User
22
+ ------------------
23
+
24
+ .. autoclass :: User
25
+ :members:
15
26
16
27
Observer
17
- ---------------
28
+ ------------------
18
29
19
30
.. autoclass :: Observer
20
31
:members:
21
32
33
+ Computer
34
+ ------------------
22
35
23
- Person
24
- -------------
36
+ .. autoclass :: Computer
37
+ :members:
25
38
26
- .. autoclass :: Person
27
- :members:
39
+ Participant
40
+ ------------------
28
41
42
+ .. autoclass :: Participant
43
+ :members:
29
44
30
45
Team
31
- ----------------
46
+ ------------------
32
47
33
48
.. autoclass :: Team
34
49
:members:
35
50
36
51
37
52
PlayerSummary
38
- -----------------
53
+ ------------------
39
54
40
55
.. autoclass :: PlayerSummary
41
56
:members:
42
57
43
58
Graph
44
- -----------
59
+ ------------------
45
60
46
61
.. autoclass :: Graph
47
62
:members:
Original file line number Diff line number Diff line change @@ -243,7 +243,8 @@ def url(self):
243
243
244
244
245
245
class Observer (Entity , User ):
246
- """
246
+ """ Extends :class:`Entity` and :class:`User`.
247
+
247
248
:param integer sid: The entity's unique slot id.
248
249
:param dict slot_data: The slot data associated with this entity
249
250
:param integer uid: The user's unique user id
@@ -262,7 +263,8 @@ def __str__(self):
262
263
263
264
264
265
class Computer (Entity , Player ):
265
- """
266
+ """ Extends :class:`Entity` and :class:`Player`
267
+
266
268
:param integer sid: The entity's unique slot id.
267
269
:param dict slot_data: The slot data associated with this entity
268
270
:param integer pid: The player's unique player id.
@@ -281,7 +283,8 @@ def __str__(self):
281
283
282
284
283
285
class Participant (Entity , User , Player ):
284
- """
286
+ """ Extends :class:`Entity`, :class:`User`, and :class:`Player`
287
+
285
288
:param integer sid: The entity's unique slot id.
286
289
:param dict slot_data: The slot data associated with this entity
287
290
:param integer uid: The user's unique user id
You can’t perform that action at this time.
0 commit comments