metaforce/DataSpec/DNAMP1/SnowForces.hpp

23 lines
288 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
#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];
};
}