docs: Fixed docs links to classes due to file structure change

This commit is contained in:
AURUMVORXX
2024-11-07 02:34:51 +03:00
parent 15b34c3f40
commit df9675d67b
5 changed files with 4 additions and 4 deletions

View File

@@ -1,3 +1,3 @@
# `class` DamageDescription
---
::: g2o.damage.DamageDescription
::: g2o.classes.damage.DamageDescription

View File

@@ -1,3 +1,3 @@
# `class` ItemGround
---
::: g2o.items.ItemGround
::: g2o.classes.items.ItemGround

View File

@@ -1,3 +1,3 @@
# `class` Packet
---
::: g2o.packets.Packet
::: g2o.classes.packets.Packet

0
g2o/classes/__init__.py Normal file
View File

View File

@@ -80,7 +80,7 @@ class Packet(sqg2o.Packet):
def writeUInt32(self, value : int):
"""
!!! note
By default squirrel uses int32 values, which means that this method behaves exactly the same as [writeInt32](Packet.md#g2o.packets.Packet.writeInt32) in scripts.
By default squirrel uses int32 values, which means that this method behaves exactly the same as [writeInt32](Packet.md#g2o.classes.packets.Packet.writeInt32) in scripts.
This method will append unsigned int32 value to the packet. (4 bytes)
**Parameters:**
* `int` **value**: the number value in range 0 to 4294967295.