blob: 3af2c9bc6e5a1444c729e62c1f6dd0cdc08901c8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "common.h"
class CVehicle;
class CCranes
{
public:
static bool IsThisCarBeingTargettedByAnyCrane(CVehicle*);
static bool IsThisCarBeingCarriedByAnyCrane(CVehicle*);
};
|