1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-07-01 06:27:11 +02:00

Untested implementation of the Blip reference type.

This commit is contained in:
Sandu Liviu Catalin
2015-10-29 22:07:15 +02:00
parent 0ccf4678a8
commit f89e0d8cd6
2 changed files with 178 additions and 7 deletions

View File

@ -13,8 +13,49 @@ namespace SqMod {
class CBlip : public Reference< CBlip >
{
public:
// --------------------------------------------------------------------------------------------
using RefType::Reference;
/* --------------------------------------------------------------------------------------------
*
*/
SQInteger GetWorld() const noexcept;
/* --------------------------------------------------------------------------------------------
*
*/
SQInteger GetScale() const noexcept;
/* --------------------------------------------------------------------------------------------
*
*/
const Vector3 & GetPosition() const noexcept;
/* --------------------------------------------------------------------------------------------
*
*/
SQFloat GetPositionX() const noexcept;
/* --------------------------------------------------------------------------------------------
*
*/
SQFloat GetPositionY() const noexcept;
/* --------------------------------------------------------------------------------------------
*
*/
SQFloat GetPositionZ() const noexcept;
/* --------------------------------------------------------------------------------------------
*
*/
const Color4 & GetColor() const noexcept;
/* --------------------------------------------------------------------------------------------
*
*/
SQInt32 GetSprID() const noexcept;
};
} // Namespace:: SqMod