docs: Added docs for constants

This commit is contained in:
AURUMVORXX
2024-11-05 19:36:53 +03:00
parent c66a1e3238
commit 1ec6377864
19 changed files with 200 additions and 10 deletions

View File

@@ -25,7 +25,7 @@ class Packet(sqg2o.Packet):
This method will send the packet data to the specified player.
**Parameters:**
* `int` **playerid**: the id of the player to whom you want to send the packet.
* `int` **reliability**: the reliability type, for more information see **TBD**.
* `int` **reliability**: the reliability type, for more information see [Reliability](../../constants/reliability.md).
"""
return super().send(playerid, reliability)
@@ -33,7 +33,7 @@ class Packet(sqg2o.Packet):
"""
This method will send the packet data to the specified player.
**Parameters:**
* `int` **reliability**: the reliability type, for more information see **TBD**.
* `int` **reliability**: the reliability type, for more information see [Reliability](../../constants/reliability.md).
"""
return super().send(playerid, reliability)