mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-16 21:18:59 +00:00
16 lines
469 B
C++
16 lines
469 B
C++
#pragma once
|
|
#include "common.h"
|
|
|
|
class CVehicle;
|
|
|
|
class CCranes
|
|
{
|
|
public:
|
|
static bool IsThisCarBeingTargettedByAnyCrane(CVehicle*);
|
|
static bool IsThisCarBeingCarriedByAnyCrane(CVehicle*);
|
|
static bool IsThisCarPickedUp(float, float, CVehicle*);
|
|
static void ActivateCrane(float, float, float, float, float, float, float, float, bool, bool, float, float);
|
|
static void DeActivateCrane(float, float);
|
|
static void InitCranes(void);
|
|
static void UpdateCranes(void);
|
|
};
|