25 lines
493 B
C
25 lines
493 B
C
|
|
||
|
|
||
|
#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
|