2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 23:11:22 +00:00
metaforce/DataSpec/DNAMP1/SnowForces.hpp
2017-12-28 22:08:12 -10:00

25 lines
372 B
C++

#ifndef __DNAMP1_SNOWFORCES_HPP__
#define __DNAMP1_SNOWFORCES_HPP__
#include <vector>
#include "DNAMP1.hpp"
namespace DataSpec::DNAMP1
{
struct SnowForces : BigYAML
{
DECL_YAML
struct Force : BigYAML
{
DECL_YAML
Value<float> gravity;
Value<float> wind;
};
Value<Force> forces[256];
};
}
#endif // __DNAMP1_SNOWFORCES_HPP__