mirror of
https://github.com/dashr9230/SA-MP.git
synced 2025-01-05 17:13:27 +08:00
2c418701fd
* Add CVehicle constructor stub
18 lines
356 B
C++
18 lines
356 B
C++
|
|
#pragma once
|
|
|
|
#include "game.h"
|
|
#include "entity.h"
|
|
|
|
//-----------------------------------------------------------
|
|
|
|
class CVehicle : public CEntity
|
|
{
|
|
public:
|
|
|
|
CVehicle( int iType, float fPosX, float fPosY, float fPosZ, float fRotation = 0.0f, BOOL bKeepModelLoaded = FALSE, int a8 = 0);
|
|
|
|
};
|
|
|
|
//-----------------------------------------------------------
|