metaforce/DataSpec/DNAMP1/SnowForces.hpp

25 lines
379 B
C++
Raw Normal View History

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