2017-05-22 11:24:24 +00:00
|
|
|
#ifndef __DNAMP1_SNOWFORCES_HPP__
|
|
|
|
#define __DNAMP1_SNOWFORCES_HPP__
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "DNAMP1.hpp"
|
|
|
|
|
2017-12-29 08:08:12 +00:00
|
|
|
namespace DataSpec::DNAMP1
|
2017-05-22 11:24:24 +00:00
|
|
|
{
|
2018-02-22 07:24:51 +00:00
|
|
|
struct SnowForces : BigDNA
|
2017-05-22 11:24:24 +00:00
|
|
|
{
|
2018-02-22 07:24:51 +00:00
|
|
|
AT_DECL_DNA_YAML
|
|
|
|
struct Force : BigDNA
|
2017-05-22 11:24:24 +00:00
|
|
|
{
|
2018-02-22 07:24:51 +00:00
|
|
|
AT_DECL_DNA
|
2017-05-22 11:24:24 +00:00
|
|
|
Value<float> gravity;
|
|
|
|
Value<float> wind;
|
|
|
|
};
|
|
|
|
|
|
|
|
Value<Force> forces[256];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __DNAMP1_SNOWFORCES_HPP__
|