docs: Fixed docs links to classes due to file structure change
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
# `class` DamageDescription
|
# `class` DamageDescription
|
||||||
---
|
---
|
||||||
::: g2o.damage.DamageDescription
|
::: g2o.classes.damage.DamageDescription
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
# `class` ItemGround
|
# `class` ItemGround
|
||||||
---
|
---
|
||||||
::: g2o.items.ItemGround
|
::: g2o.classes.items.ItemGround
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
# `class` Packet
|
# `class` Packet
|
||||||
---
|
---
|
||||||
::: g2o.packets.Packet
|
::: g2o.classes.packets.Packet
|
||||||
0
g2o/classes/__init__.py
Normal file
0
g2o/classes/__init__.py
Normal file
@@ -80,7 +80,7 @@ class Packet(sqg2o.Packet):
|
|||||||
def writeUInt32(self, value : int):
|
def writeUInt32(self, value : int):
|
||||||
"""
|
"""
|
||||||
!!! note
|
!!! 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)
|
This method will append unsigned int32 value to the packet. (4 bytes)
|
||||||
**Parameters:**
|
**Parameters:**
|
||||||
* `int` **value**: the number value in range 0 to 4294967295.
|
* `int` **value**: the number value in range 0 to 4294967295.
|
||||||
|
|||||||
Reference in New Issue
Block a user