Redline/source/particles.h
maride 02061d74c2 Original 1.0.5 code
(as received from Jonas Echterhoff)
2016-04-02 14:43:55 +02:00

1 line
528 B
C

#ifndef __PARTICLES
#define __PARTICLES
typedef struct{
int sprite;
int veloRotation;
int screenTexture;
int grow;
int multi;
int notInTunnel;
float brightness;
float r,g,b,a;
float xSize,ySize;
float maxSpread,maxVelo;
float maxLife;
float gravity,screenGravity;
}tParticlesDef;
void ParticlesCreate(float quantity,tVector3 pos,tVector3 velo,tParticlesDef *def);
void ParticlesDraw();
void ParticlesProcess();
void ParticlesClearScreen();
void ParticlesClear();
void ParticlesInitDef(tParticlesDef *def);
#endif