Cube  Diff

Differences From Artifact [7f852b8ad3]:

To Artifact [f527e01774]:


1
2
3
4
5
6
7
8
9
10
11
12
13
14
// renderparticles.cpp

#include "cube.h"

#import "DynamicEntity.h"

const int MAXPARTICLES = 10500;
const int NUMPARTCUTOFF = 20;
struct particle {
	OFVector3D o, d;
	int fade, type;
	int millis;
	struct particle *next;
};






|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
// renderparticles.cpp

#include "cube.h"

#import "DynamicEntity.h"

#define MAXPARTICLES 10500
const int NUMPARTCUTOFF = 20;
struct particle {
	OFVector3D o, d;
	int fade, type;
	int millis;
	struct particle *next;
};