mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-23 02:42:38 +01:00
14 lines
469 B
C
14 lines
469 B
C
#ifndef OBJCOLL_H
|
|
#define OBJCOLL_H
|
|
|
|
extern char CellEmpty(VECTOR *pPosition, int radius); // 0x00069BA4
|
|
extern char CellAtPositionEmpty(VECTOR *pPosition, int radius); // 0x0006B3E4
|
|
|
|
extern char lineClear(VECTOR *v1, VECTOR *v2); // 0x00069FB4
|
|
extern void CheckScenaryCollisions(CAR_DATA *cp); // 0x0006A64C
|
|
extern int QuickBuildingCollisionCheck(VECTOR *pPos, int dir, int l, int w, int extra); // 0x0006ADBC
|
|
|
|
extern void DoScenaryCollisions(); // 0x0006B220
|
|
|
|
#endif
|