metaforce/DataSpec/DNAMP1/SnowForces.hpp

19 lines
293 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
#include <vector>
#include "DNAMP1.hpp"
2018-12-08 05:30:43 +00:00
namespace DataSpec::DNAMP1 {
struct SnowForces : BigDNA {
AT_DECL_DNA_YAML
struct Force : BigDNA {
AT_DECL_DNA
Value<float> gravity;
Value<float> wind;
};
2018-12-08 05:30:43 +00:00
Value<Force> forces[256];
};
2018-12-08 05:30:43 +00:00
} // namespace DataSpec::DNAMP1