diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-07-24 13:58:39 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-07-24 13:58:39 (GMT) |
| commit | 603cf3149df2fc788303207162bf29e05bd29816 (patch) | |
| tree | 1e2f9c7ddf3c01a67bc50426806e598a595a1e40 /src/simulation/Sample.h | |
| parent | e65e222f2ccbf60a4c224bbe29884ebb1001cfd7 (diff) | |
| download | powder-603cf3149df2fc788303207162bf29e05bd29816.zip powder-603cf3149df2fc788303207162bf29e05bd29816.tar.gz | |
HUD improvements
Diffstat (limited to 'src/simulation/Sample.h')
| -rw-r--r-- | src/simulation/Sample.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/simulation/Sample.h b/src/simulation/Sample.h new file mode 100644 index 0000000..bd91d02 --- /dev/null +++ b/src/simulation/Sample.h @@ -0,0 +1,25 @@ + + +#ifndef The_Powder_Toy_Sample_h +#define The_Powder_Toy_Sample_h + +#include "Particle.h" + +class SimulationSample +{ +public: + Particle particle; + float AirPressure; + float AirTemperature; + float AirVelocityX; + float AirVelocityY; + + int WallType; + float Gravity; + float GravityVelocityX; + float GravityVelocityY; + + SimulationSample() : particle(), AirPressure(0), AirVelocityX(0), AirVelocityY(0), WallType(0), Gravity(0), GravityVelocityX(0), GravityVelocityY(0), AirTemperature(0) {} +}; + +#endif
\ No newline at end of file |
