mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-24 11:22:39 +01:00
c40d40bd22
- moved necessary data to new sources - running intro with TOMB5 HLE emulator
25 lines
588 B
C
25 lines
588 B
C
#ifndef OBJANIM_H
|
|
#define OBJANIM_H
|
|
|
|
|
|
extern void InitCyclingPals(); // 0x000149B4
|
|
|
|
extern void ColourCycle(); // 0x00013980
|
|
|
|
extern void FindSmashableObjects(); // 0x00014950
|
|
|
|
extern void InitAnimatingObjects(); // 0x00013CAC
|
|
|
|
extern void InitSpooledAnimObj(int model_number); // 0x00014828
|
|
|
|
extern void int_garage_door(); // 0x000149A8
|
|
|
|
extern int DrawAnimatingObject(struct MODEL *model, struct CELL_OBJECT *cop, struct VECTOR *pos); // 0x000148A0
|
|
|
|
extern void animate_object(struct CELL_OBJECT *cop, int type); // 0x00013DF8
|
|
|
|
extern void animate_garage_door(); // 0x000146A4
|
|
|
|
|
|
#endif
|