1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Fixed documentation of the Blip type.

This commit is contained in:
Sandu Liviu Catalin 2015-10-29 23:03:58 +02:00
parent 9abb596aa8
commit 56170f5304

View File

@ -25,37 +25,37 @@ public:
SQInteger GetWorld() const noexcept;
/* --------------------------------------------------------------------------------------------
* Retrieve the scale of the referenced checkpoint instance.
* Retrieve the scale of the referenced blip instance.
*/
SQInteger GetScale() const noexcept;
/* --------------------------------------------------------------------------------------------
* Retrieve the position of the referenced checkpoint instance.
* Retrieve the position of the referenced blip instance.
*/
const Vector3 & GetPosition() const noexcept;
/* --------------------------------------------------------------------------------------------
* Retrieve the x axis position of the referenced checkpoint instance.
* Retrieve the x axis position of the referenced blip instance.
*/
SQFloat GetPositionX() const noexcept;
/* --------------------------------------------------------------------------------------------
* Retrieve the y axis position of the referenced checkpoint instance.
* Retrieve the y axis position of the referenced blip instance.
*/
SQFloat GetPositionY() const noexcept;
/* --------------------------------------------------------------------------------------------
* Retrieve the z axis position of the referenced checkpoint instance.
* Retrieve the z axis position of the referenced blip instance.
*/
SQFloat GetPositionZ() const noexcept;
/* --------------------------------------------------------------------------------------------
* Retrieve the color of the referenced checkpoint instance.
* Retrieve the color of the referenced blip instance.
*/
const Color4 & GetColor() const noexcept;
/* --------------------------------------------------------------------------------------------
* Retrieve the sprite identifier of the referenced checkpoint instance.
* Retrieve the sprite identifier of the referenced blip instance.
*/
SQInt32 GetSprID() const noexcept;
};