blob: 6273b6cc9572a46b511ee8499421abc4745a5c93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* PARSEC HEADER: part_sys.h
*/
#ifndef _PART_SYS_H_
#define _PART_SYS_H_
// external functions
void InitParticleSystem();
void InitParticleSizes();
void KillParticleSystem();
void FreeParticles();
int PRT_ParticleInBoundingSphere( ShipObject *shippo, Vertex3& point );
int DrawCustomParticles( const GenObject *baseobject );
void PRTSYS_DrawParticles();
#endif // _PART_SYS_H_
|