2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-16 16:05:53 +00:00
metaforce/DataSpec/DNAMP1/SnowForces.hpp
2018-10-06 17:42:33 -10:00

23 lines
288 B
C++

#pragma once
#include <vector>
#include "DNAMP1.hpp"
namespace DataSpec::DNAMP1
{
struct SnowForces : BigDNA
{
AT_DECL_DNA_YAML
struct Force : BigDNA
{
AT_DECL_DNA
Value<float> gravity;
Value<float> wind;
};
Value<Force> forces[256];
};
}