summaryrefslogtreecommitdiff
path: root/src/simulation/Particle.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/simulation/Particle.h')
-rw-r--r--src/simulation/Particle.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/simulation/Particle.h b/src/simulation/Particle.h
new file mode 100644
index 0000000..bb0297e
--- /dev/null
+++ b/src/simulation/Particle.h
@@ -0,0 +1,31 @@
+//
+// Particle.h
+// The Powder Toy
+//
+// Created by Simon Robertshaw on 04/06/2012.
+// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
+//
+
+#ifndef The_Powder_Toy_Particle_h
+#define The_Powder_Toy_Particle_h
+
+#include <vector>
+#include "StructProperty.h"
+
+struct Particle
+{
+ int type;
+ int life, ctype;
+ float x, y, vx, vy;
+ float temp;
+ float pavg[2];
+ int flags;
+ int tmp;
+ int tmp2;
+ unsigned int dcolour;
+ /** Returns a list of properties, their type and offset within the structure that can be changed
+ by higher-level processes refering to them by name such as Lua or the property tool **/
+ static std::vector<StructProperty> GetProperties();
+};
+
+#endif