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
19 lines
396 B
C
19 lines
396 B
C
#ifndef JOB_FX_H
|
|
#define JOB_FX_H
|
|
|
|
|
|
extern void InitExObjects(); // 0x00057B0C
|
|
|
|
extern void AddExplosion(struct VECTOR pos, int type); // 0x00056D54
|
|
|
|
extern void HandleExplosion(); // 0x00056E44
|
|
|
|
extern void DrawAllExplosions(); // 0x00057B50
|
|
|
|
extern void initExplosion(); // 0x00056FC0
|
|
|
|
extern void DrawExplosion(int time, struct VECTOR position, int hscale, int rscale); // 0x000572A8
|
|
|
|
|
|
#endif
|