blob: 3af2c9bc6e5a1444c729e62c1f6dd0cdc08901c8 (
plain) (
tree)
|
|
#pragma once
#include "common.h"
class CVehicle;
class CCranes
{
public:
static bool IsThisCarBeingTargettedByAnyCrane(CVehicle*);
static bool IsThisCarBeingCarriedByAnyCrane(CVehicle*);
};
|