mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 22:47:29 +08:00
[saco] Implement/match CPlayerPed::IsDancing()
This commit is contained in:
parent
0de166559e
commit
5aa26948af
@ -1200,6 +1200,14 @@ void CPlayerPed::StopDancing()
|
|||||||
|
|
||||||
//-----------------------------------------------------------
|
//-----------------------------------------------------------
|
||||||
|
|
||||||
|
BOOL CPlayerPed::IsDancing()
|
||||||
|
{
|
||||||
|
if(m_iDanceState) return TRUE;
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
//-----------------------------------------------------------
|
||||||
|
|
||||||
void CPlayerPed::ProcessVehicleHorn()
|
void CPlayerPed::ProcessVehicleHorn()
|
||||||
{
|
{
|
||||||
if(!m_pPed) return;
|
if(!m_pPed) return;
|
||||||
|
@ -103,6 +103,7 @@ public:
|
|||||||
|
|
||||||
void StartDancing(int iStyle);
|
void StartDancing(int iStyle);
|
||||||
void StopDancing();
|
void StopDancing();
|
||||||
|
BOOL IsDancing();
|
||||||
void HandsUp();
|
void HandsUp();
|
||||||
BOOL HasHandsUp();
|
BOOL HasHandsUp();
|
||||||
void HoldItem(int iObject);
|
void HoldItem(int iObject);
|
||||||
|
Loading…
Reference in New Issue
Block a user