16 lines
412 B
C++
16 lines
412 B
C++
#pragma once
|
|
#include "common.h"
|
|
|
|
class CVehicle;
|
|
|
|
class CCranes
|
|
{
|
|
public:
|
|
static bool IsThisCarBeingTargettedByAnyCrane(CVehicle*);
|
|
static bool IsThisCarBeingCarriedByAnyCrane(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);
|
|
};
|