mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-22 18:32:42 +01:00
15 lines
542 B
C
15 lines
542 B
C
#ifndef CELL_H
|
|
#define CELL_H
|
|
|
|
extern unsigned char cell_object_computed_values[2048];
|
|
|
|
extern void ClearCopUsage(); // 0x00023DC0
|
|
|
|
extern PACKED_CELL_OBJECT * GetFirstPackedCop(int cellx, int cellz, CELL_ITERATOR *pci, int use_computed, int level = -1); // 0x00023BAC
|
|
extern PACKED_CELL_OBJECT* GetNextPackedCop(CELL_ITERATOR* pci); // 0x0003F5F0
|
|
extern CELL_OBJECT* UnpackCellObject(PACKED_CELL_OBJECT* ppco, XZPAIR* near); // 0x000418E8
|
|
|
|
extern void QuickUnpackCellObject(PACKED_CELL_OBJECT* ppco, XZPAIR* near, CELL_OBJECT* pco);
|
|
|
|
#endif
|