1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00
SqMod/source/Entity/Blip.hpp
2015-10-29 22:07:15 +02:00

64 lines
1.9 KiB
C++

#ifndef _ENTITY_BLIP_HPP_
#define _ENTITY_BLIP_HPP_
// ------------------------------------------------------------------------------------------------
#include "Entity.hpp"
// ------------------------------------------------------------------------------------------------
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
#endif // _ENTITY_BLIP_HPP_