1
0
mirror of https://github.com/td512/re3.git synced 2026-02-19 18:34:58 +00:00
Files
td512.re3/src/control/Cranes.h
eray orçunus d5d1c7ec5f Peds
2019-10-07 00:39:25 +03:00

12 lines
194 B
C++

#pragma once
#include "common.h"
class CVehicle;
class CCranes
{
public:
static bool IsThisCarBeingTargettedByAnyCrane(CVehicle*);
static bool IsThisCarBeingCarriedByAnyCrane(CVehicle*);
};